# HG changeset patch # User Claus Gittinger # Date 1123172197 -7200 # Node ID 13237e16b048d8dad7867d2638057e2ea90bf48b # Parent 06c3681a79b330752e8d373023126fac6f22907d *** empty log message *** 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.