#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Thu, 21 Apr 2016 10:57:33 +0200
changeset 5674 7a82399d403b
parent 5672 f9a9151132d3
child 5675 7bf31ecf9aa3
#BUGFIX by stefan class: SelectionInListView changed: #initStyle set hilightBackgroundColorNoFocus on #reinitStyle
SelectionInListView.st
--- a/SelectionInListView.st	Wed Apr 20 08:32:28 2016 +0200
+++ b/SelectionInListView.st	Thu Apr 21 10:57:33 2016 +0200
@@ -2947,18 +2947,14 @@
         halfIntensityFgColor := Color darkGray.
     ].
 
+    hilightFgColorNoFocus := DefaultHilightForegroundColorNoFocus.
     hilightFgColorNoFocus isNil ifTrue:[
-        hilightFgColorNoFocus := DefaultHilightForegroundColorNoFocus.
-        hilightFgColorNoFocus isNil ifTrue:[
-            hilightFgColorNoFocus := hilightFgColor slightlyLightened.
-        ]
+        hilightFgColorNoFocus := hilightFgColor slightlyLightened.
     ].
+    hilightBgColorNoFocus := DefaultHilightBackgroundColorNoFocus.
     hilightBgColorNoFocus isNil ifTrue:[
-        hilightBgColorNoFocus := DefaultHilightBackgroundColorNoFocus.
-        hilightBgColorNoFocus isNil ifTrue:[
-            hilightBgColorNoFocus := hilightBgColor slightlyLightened.
-        ]
-    ].
+        hilightBgColorNoFocus := hilightBgColor slightlyLightened.
+    ]
 
     "Modified: / 05-08-1998 / 00:00:00 / cg"
     "Modified (comment): / 05-10-2011 / 15:50:50 / az"