ImageEditor.st
changeset 3811 1c02ea1990b5
parent 3765 4443157a398a
child 3830 bf667c58b12e
--- a/ImageEditor.st	Fri Nov 01 05:50:02 2019 +0100
+++ b/ImageEditor.st	Fri Nov 01 05:50:05 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1997-1998 by eXept Software AG
               All Rights Reserved
@@ -5841,8 +5843,8 @@
         resourceSelector notNil ifTrue:[
             ^ resources 
                     string:(self modified 
-                            ifTrue:['ImageEditor (modified): %1 » %2']
-                            ifFalse:['ImageEditor: %1 » %2'])
+                            ifTrue:['ImageEditor (modified): %1 » %2']
+                            ifFalse:['ImageEditor: %1 » %2'])
                     with:resourceClass name
                     with:resourceSelector
         ].
@@ -5875,8 +5877,8 @@
         resourceSelector notNil ifTrue:[
             ^ resources 
                     string:(self modified 
-                            ifTrue:['Image (modified) from: %1 » %2']
-                            ifFalse:['Image from: %1 » %2'])
+                            ifTrue:['Image (modified) from: %1 » %2']
+                            ifFalse:['Image from: %1 » %2'])
                     with:resourceClass name
                     with:resourceSelector
         ].
@@ -5898,9 +5900,9 @@
 
 openDocumentation
     "opens the documentation file of the Image Editor"
+    "Called when <F1> is pressed"
 
     self openHTMLDocument: 'tools/uipainter/ImageEditor.html'
-
 ! !
 
 !ImageEditor methodsFor:'loading'!