# HG changeset patch # User Claus Gittinger # Date 1422981435 -3600 # Node ID 9ee8f0e74b96f0147751f021b8bf78b560747b56 # Parent 174a9f51db760973d90e18baa604757d30dadcde class: ImageEditor changed: #editSelectedColor (send #color instead of #colorNameOrColor) oops - wasn't dealing corretly with named colors in color dialog diff -r 174a9f51db76 -r 9ee8f0e74b96 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 ] !