#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sat, 27 Oct 2018 23:02:54 +0200
changeset 6471 202a6dcf53d5
parent 6470 bf8450905cb8
child 6472 8fd99a9d1d84
#REFACTORING by cg class: ListView changed: #font:
ListView.st
--- a/ListView.st	Sat Oct 27 10:19:22 2018 +0200
+++ b/ListView.st	Sat Oct 27 23:02:54 2018 +0200
@@ -1677,10 +1677,12 @@
                 ]
             ].
             self enqueueDelayedContentsChangedNotification
-        ]
+        ].
+        self changed:#font.
     ]
 
     "Modified: / 25-07-2012 / 12:01:36 / cg"
+    "Modified: / 27-10-2018 / 22:58:23 / Claus Gittinger"
 !
 
 fontHeight:pixels
@@ -3424,12 +3426,13 @@
 
     (line notNil
     and:[line isText
-    and:[fg ~= fgColor or:[bg ~= bgColor]]]) ifTrue:[
-	^ line withoutAnyColorEmphasis
+    and:[(fg ~= fgColor) or:[bg ~= bgColor]]]) ifTrue:[
+        ^ line withoutAnyColorEmphasis
     ].
     ^ line
 
     "Created: / 15-12-1999 / 23:19:30 / cg"
+    "Modified: / 26-10-2018 / 21:56:57 / Claus Gittinger"
 !
 
 xOfCol:col inVisibleLine:visLineNr