From b76e86686a75897db912bfd4d79e46824bc874e0 Mon Sep 17 00:00:00 2001 From: glubsy Date: Tue, 29 Dec 2020 16:41:34 +0100 Subject: [PATCH] Tweak green color on exclude table --- qt/exclude_list_dialog.py | 2 +- qt/exclude_list_table.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/exclude_list_dialog.py b/qt/exclude_list_dialog.py index a4aa4af4..dd7d2002 100644 --- a/qt/exclude_list_dialog.py +++ b/qt/exclude_list_dialog.py @@ -132,7 +132,7 @@ class ExcludeListDialog(QDialog): match = compiled.match(input_text) if match: self._input_styled = True - self.inputLine.setStyleSheet("background-color: rgb(10, 220, 10);") + self.inputLine.setStyleSheet("background-color: rgb(10, 200, 10);") else: self.reset_input_style() diff --git a/qt/exclude_list_table.py b/qt/exclude_list_table.py index 7c6a3b63..3521c7a1 100644 --- a/qt/exclude_list_table.py +++ b/qt/exclude_list_table.py @@ -41,7 +41,7 @@ class ExcludeListTable(Table): return QFont(self.view.font()) elif role == Qt.BackgroundRole and column.name == "regex": if row.highlight: - return QColor(10, 120, 10) # green + return QColor(10, 200, 10) # green elif role == Qt.EditRole: if column.name == "regex": return row.data[column.name]