DSVColumnView.st
changeset 3991 c01031ccdbda
parent 3989 5c6706e4e0d1
child 3993 6840bc23b584
--- a/DSVColumnView.st	Thu Jan 20 08:57:11 2011 +0100
+++ b/DSVColumnView.st	Thu Jan 20 08:59:41 2011 +0100
@@ -3100,10 +3100,12 @@
         selectionForegroundColorNoFocus := selectionForegroundColor.
     ].
     selectionBackgroundColorNoFocus isNil ifTrue:[
-        selectionBackgroundColorNoFocus := Color brightness:(selectionBackgroundColor "lightened" brightness).   "/ asGray.
+        selectionBackgroundColorNoFocus := selectionBackgroundColor lightened.
+        "/ selectionBackgroundColorNoFocus := Color brightness:(selectionBackgroundColor "lightened" brightness).   "/ asGray.
     ].
     selectionFrameColorNoFocus isNil ifTrue:[
-        selectionFrameColorNoFocus := Color brightness:(selectionFrameColor "lightened" brightness).   "/ asGray
+        selectionFrameColorNoFocus := selectionFrameColor lightened.  
+        "/ selectionFrameColorNoFocus := Color brightness:(selectionFrameColor "lightened" brightness).   "/ asGray
     ].
 
     rowSelectorForm         := self class rowSelectorImage.
@@ -3137,7 +3139,7 @@
     comboButtonLevel  := ComboButtonLevel.
     comboButtonExtent := ComboButtonExtent.
 
-    "Modified: / 20-01-2011 / 08:44:02 / cg"
+    "Modified: / 20-01-2011 / 08:59:35 / cg"
 !
 
 initialize
@@ -4673,9 +4675,9 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.267 2011-01-20 07:56:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.268 2011-01-20 07:59:41 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.267 2011-01-20 07:56:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.268 2011-01-20 07:59:41 cg Exp $'
 ! !