*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 04 Aug 2005 18:16:37 +0200
changeset 1929 13237e16b048
parent 1928 06c3681a79b3
child 1930 7b5ec69e6526
*** empty log message ***
ImageEditor.st
--- a/ImageEditor.st	Wed Aug 03 22:20:46 2005 +0200
+++ b/ImageEditor.st	Thu Aug 04 18:16:37 2005 +0200
@@ -4853,8 +4853,8 @@
     (self openDialogInterface:#dialogSpecForNewImage withBindings:aspects)
     ifTrue:[
         szString := (aspects at:#selectionOfSize) value.
-        width  := 128 min: (Integer readFromString: (szString upTo: $x) onError:[24]).
-        height := 128 min: (Integer readFromString: (szString copy reverse upTo: $x) reverse onError:[24]).
+        width  := "128 min: "(Integer readFromString: (szString upTo: $x) onError:[32]).
+        height := "128 min: " (Integer readFromString: (szString copy reverse upTo: $x) reverse onError:[32]).
 
         cMapString := (aspects at:#selectionOfColorMap) value.
         cMapMode   := self class namesOfColorMaps keyAtEqualValue:cMapString.