class: ImageEditor
authorClaus Gittinger <cg@exept.de>
Tue, 08 Jul 2014 23:34:22 +0200
changeset 3140 5a25f22cb054
parent 3139 209cc60527a4
child 3141 c3fb91a71410
class: ImageEditor changed: #ditherToDepth: (send #lightGray instead of #lightGrey, send #darkGray instead of #darkGrey)
ImageEditor.st
--- a/ImageEditor.st	Tue Jul 08 23:21:51 2014 +0200
+++ b/ImageEditor.st	Tue Jul 08 23:34:22 2014 +0200
@@ -5370,8 +5370,8 @@
         ] ifFalse:[ depth = 2 ifTrue:[
             ditherColors := Array 
                                 with:(Color black) 
-                                with:(Color darkGrey)
-                                with:(Color lightGrey)
+                                with:(Color darkGray)
+                                with:(Color lightGray)
                                 with:(Color white).
         ] ifFalse:[ depth = 3 ifTrue:[
             ditherColors := Color colorCubeWithRed:2 green:2 blue:2.