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 9c85376b3e
commit 997cc95fc7

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):