diff -r 06c3681a79b3 -r 13237e16b048 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.