x
authorClaus Gittinger <cg@exept.de>
Fri, 29 Oct 2010 19:10:39 +0200
changeset 2817 4577fb231f6f
parent 2816 1832d595db94
child 2818 6d5a0ea87cb7
x
ImageEditor.st
--- a/ImageEditor.st	Mon Oct 25 12:01:31 2010 +0200
+++ b/ImageEditor.st	Fri Oct 29 19:10:39 2010 +0200
@@ -5331,7 +5331,7 @@
 reduceNumberOfColors
     |s n anyChange img usedColors|
 
-    s := Dialog request:'Number of color bits to strip (1-7) ?'.
+    s := Dialog request:'Number of color bits to strip (1-7) ?' initialAnswer:3.
     s size == 0 ifTrue:[^ self].
 
     n := Integer readFrom:s onError:0.
@@ -5357,6 +5357,8 @@
             ]
         ]
     ].
+
+    "Modified: / 29-10-2010 / 18:08:01 / cg"
 !
 
 reduceNumberOfColors2