useSketch menu item moved
authorClaus Gittinger <cg@exept.de>
Thu, 17 Jan 2008 15:49:03 +0100
changeset 2247 a1a7ec09adff
parent 2246 1422d76c54dc
child 2248 720b0784c6f2
useSketch menu item moved
UIPainter.st
--- a/UIPainter.st	Thu Jan 17 10:55:42 2008 +0100
+++ b/UIPainter.st	Thu Jan 17 15:49:03 2008 +0100
@@ -1244,11 +1244,6 @@
                   isVisible: isStandAlone
                 )
                (MenuItem
-                  label: 'Use Sketch...'
-                  itemValue: useSketch
-                  translateLabel: true
-                )
-               (MenuItem
                   label: '-'
                   isVisible: isStandAlone
                 )
@@ -1481,6 +1476,11 @@
                   itemValue: doDefineGrid
                   translateLabel: true
                 )
+               (MenuItem
+                  label: 'Use Sketch...'
+                  itemValue: useSketch
+                  translateLabel: true
+                )
                )
               nil
               nil
@@ -4876,7 +4876,7 @@
 !
 
 useSketch
-    "selekt sketchfile to underly"
+    "select sketchfile to underly"
 
     |fn|
 
@@ -4884,7 +4884,7 @@
     fn isNil ifTrue:[
         ^ self
     ].
-    painter useSketch:fn
+    painter useSketchFile:fn
 
     "Created: / 16-01-2008 / 17:49:20 / cg"
 ! !