*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sun, 19 Nov 2000 13:28:45 +0100
changeset 1435 f39893848245
parent 1434 223936d0c28b
child 1436 180804d7c28f
*** empty log message ***
ImageEditor.st
--- a/ImageEditor.st	Sat Nov 18 13:40:10 2000 +0100
+++ b/ImageEditor.st	Sun Nov 19 13:28:45 2000 +0100
@@ -2478,7 +2478,7 @@
     |s n anyChange img|
 
     s := Dialog request:'Number of color bits to strip (1-7) ?'.
-    s isNil ifTrue:[^ self].
+    s size == 0 ifTrue:[^ self].
     n := Integer readFrom:s onError:0.
     (n between:1 and:7) ifFalse:[
         Dialog warn:'Image unchanged'.