diff -r b389cf085b98 -r 2d7a21c00135 ImageEditor.st --- a/ImageEditor.st Mon May 02 12:13:37 2005 +0200 +++ b/ImageEditor.st Mon May 09 09:15:39 2005 +0200 @@ -3033,7 +3033,11 @@ colors := image colorMap. colors isNil ifTrue:[ - colors := image usedColors asSet. + Error handle:[:ex | + colors := OrderedCollection new. + ] do:[ + colors := image usedColors asSet. + ] ]. self listOfColors contents:(colors asOrderedCollection). !