[ui] changed the 'photo' button color

This commit is contained in:
Vinicius Moreira
2020-04-23 16:25:29 -03:00
parent 90049e3687
commit 9ec031b770
2 changed files with 2 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### UI
- Changed the main toolbar buttons style
- Changed some colors
- Removed the **x** button from some windows
## [0.9.0] - 2020-04-15

View File

@@ -473,7 +473,7 @@ class AppsTable(QTableWidget):
def get_screenshots():
self.window.get_screenshots(pkg)
bt = IconButton(QIcon(resource.get_path('img/camera.svg')), i18n=self.i18n, action=get_screenshots, background='purple', tooltip=self.i18n['action.screenshots.tooltip'])
bt = IconButton(QIcon(resource.get_path('img/camera.svg')), i18n=self.i18n, action=get_screenshots, background='#ac00e6', tooltip=self.i18n['action.screenshots.tooltip'])
bt.setEnabled(bool(pkg.model.has_screenshots()))
item.addWidget(bt)