# HG changeset patch # User Stefan Vogel # Date 1461229053 -7200 # Node ID 7a82399d403baf3c154f75849387b4b814f4241d # Parent f9a9151132d390dbd9159fe1050820a4210ed31f #BUGFIX by stefan class: SelectionInListView changed: #initStyle set hilightBackgroundColorNoFocus on #reinitStyle diff -r f9a9151132d3 -r 7a82399d403b 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"