From 9ec031b77080c6b8359513fb84c767a767c95833 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Thu, 23 Apr 2020 16:25:29 -0300 Subject: [PATCH] [ui] changed the 'photo' button color --- CHANGELOG.md | 1 + bauh/view/qt/apps_table.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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)