Made the dark->lighter selection colour slightly stronger.

This commit is contained in:
Raoul Snyman 2009-10-21 21:39:55 +02:00
parent ee6465d8a5
commit 2bf6fe0227
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class SlideList(QtGui.QTableWidget):
if text_color.value() > 128:
text_color = text_color.darker(120).name()
else:
text_color = text_color.lighter(120).name()
text_color = text_color.lighter(130).name()
self.setStyleSheet(label_stylesheet % text_color)
def keyPressEvent(self, event):