From 2bf6fe0227ece9c060f6ac93f544817e8eba8547 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Wed, 21 Oct 2009 21:39:55 +0200 Subject: [PATCH] Made the dark->lighter selection colour slightly stronger. --- openlp/core/ui/slidecontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 4f7163ba0..dc3e6099b 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -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):