class: ImageEditor
authorClaus Gittinger <cg@exept.de>
Tue, 03 Feb 2015 17:37:15 +0100
changeset 3180 9ee8f0e74b96
parent 3179 174a9f51db76
child 3181 21e690b923ed
class: ImageEditor changed: #editSelectedColor (send #color instead of #colorNameOrColor) oops - wasn't dealing corretly with named colors in color dialog
ImageEditor.st
--- a/ImageEditor.st	Tue Feb 03 17:36:57 2015 +0100
+++ b/ImageEditor.st	Tue Feb 03 17:37:15 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libtool2' }"
 
+"{ NameSpace: Smalltalk }"
+
 ResourceSpecEditor subclass:#ImageEditor
 	instanceVariableNames:'imageEditView colorMapMode editMode mouseKeyColorMode
 		selectedColorIndex postOpenAction imageSeqNr drawingColormap
@@ -5436,7 +5438,7 @@
         editor accepted ifFalse:[
             AbortOperationRequest raise.
         ].
-        editor colorNameOrColor
+        editor color
     ]
 !