diff --git a/CHANGELOG.md b/CHANGELOG.md index f74c6599..5f945ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/bauh/view/qt/apps_table.py b/bauh/view/qt/apps_table.py index 12c22c5b..5b7a7c78 100644 --- a/bauh/view/qt/apps_table.py +++ b/bauh/view/qt/apps_table.py @@ -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)