use a semi transparent, neutral selection in browser

As the base colour of rows is now visible, actions like flagging
now provide immediate feedback about what they've changed.
This commit is contained in:
Damien Elmes 2018-11-12 11:02:01 +10:00
parent f576d19426
commit 96ae855afd

View file

@ -628,6 +628,7 @@ class Browser(QMainWindow):
self.form.tableView.selectionModel()
self.form.tableView.setItemDelegate(StatusDelegate(self, self.model))
self.form.tableView.selectionModel().selectionChanged.connect(self.onRowChanged)
self.form.tableView.setStyleSheet("QTableView{ selection-background-color: rgba(127, 127, 127, 50); }")
self.singleCard = False
def setupEditor(self):