From a129c74e1064ef5842af4817f453891ec44cac30 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Mon, 5 Aug 2019 15:56:04 -0300 Subject: [PATCH] switching info / settings button colors --- fpakman/view/qt/apps_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fpakman/view/qt/apps_table.py b/fpakman/view/qt/apps_table.py index 1fad70ac..2fac3f3b 100644 --- a/fpakman/view/qt/apps_table.py +++ b/fpakman/view/qt/apps_table.py @@ -372,13 +372,13 @@ class AppsTable(QTableWidget): def get_info(): self.window.get_app_info(app_v) - tb.addWidget(IconButton(icon_path=resource.get_path('img/app_info.svg'), action=get_info, background='#12ABAB')) + tb.addWidget(IconButton(icon_path=resource.get_path('img/app_info.svg'), action=get_info, background='#2E68D3')) def handle_click(): self.show_app_settings(app_v) if self.has_any_settings(app_v): - bt = IconButton(icon_path=resource.get_path('img/app_settings.svg'), action=handle_click, background='#2E68D3') + bt = IconButton(icon_path=resource.get_path('img/app_settings.svg'), action=handle_click, background='#12ABAB') tb.addWidget(bt) self.setCellWidget(idx, 5, tb)