diff -r 01fc9215d9c2 -r b9d9eb4b34f9 ImageEditor.st --- a/ImageEditor.st Wed Apr 12 15:58:35 2017 +0200 +++ b/ImageEditor.st Fri Apr 21 16:06:22 2017 +0200 @@ -846,9 +846,9 @@ ^Icon constantNamed:'ImageEditor class fillCircleIcon' - ifAbsentPut:[(Depth1Image width:14 height:14) bits:(ByteArray fromPackedString:'@@@@@@@A@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@a') - colorMapFromArray:#[0 0 0 255 0 0] - mask:((ImageMask width:14 height:14) bits:(ByteArray fromPackedString:'@@@@@@N@C>@_C?8G?@_<@? @8@@@@@a'); yourself); yourself] + ifAbsentPut:[(Depth1Image width:14 height:14) bits:(ByteArray fromPackedString:'@@@@@@QA@@@@@B@H@@@@@@@CH@ @@@@@AD@@@@@a') + colorMapFromArray:#[0 0 0 127 127 127] + mask:((ImageMask width:14 height:14) bits:(ByteArray fromPackedString:'@@@@@@_@C>@_C?8O? _<@? A<@@@@@a'); yourself); yourself] ! fillDiagonalGradientRectIcon @@ -2405,8 +2405,8 @@ (WindowSpec label: 'Image Editor' name: 'Image Editor' - min: (Point 600 350) - bounds: (Rectangle 0 0 632 446) + min: (Point 800 400) + bounds: (Rectangle 0 0 800 446) menu: menu icon: defaultIcon ) @@ -2644,7 +2644,7 @@ ) ) - handles: (Any 0.28999999999999998 1.0) + handles: (Any 0.47999999999999998 1.0) ) (UISubSpecification name: 'infoBarSubSpec' @@ -2656,8 +2656,6 @@ ) ) - - "Modified: / 12-04-2017 / 09:23:55 / cg" ! ! !ImageEditor class methodsFor:'menu specs'! @@ -4926,6 +4924,7 @@ self floodFillBoxVisibleHolder value:(sym == #fill). "Created: / 19-02-2017 / 15:01:05 / cg" + "Modified: / 21-04-2017 / 16:05:51 / cg" ! colorMapModeFromImage:anImage @@ -5871,7 +5870,9 @@ preferredExtent "returns the preferred extent" - ^ super preferredExtent max: (Screen current width//3)@(Screen current height//3.5) + ^ super preferredExtent max: ((Screen current width//3)@(Screen current height//3.5)) + + "Modified (format): / 13-04-2017 / 09:52:25 / cg" ! ! !ImageEditor methodsFor:'selection'!