1
0
Çatalla 0

Tweak green color on exclude table

Bu işleme şunda yer alıyor:
glubsy 2020-12-29 16:41:34 +01:00
ebeveyn b5f59d27c9
işleme b76e86686a
2 değiştirilmiş dosya ile 2 ekleme ve 2 silme

Dosyayı Görüntüle

@ -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()

Dosyayı Görüntüle

@ -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]