#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Wed, 20 Feb 2019 13:15:02 +0100
changeset 4227 19df2879f53d
parent 4226 d1dcdcb20574
child 4228 699d09d62316
#FEATURE by cg class: FlyByHelp changed: #keyPress:x:y:view:
FlyByHelp.st
--- a/FlyByHelp.st	Wed Feb 20 12:24:12 2019 +0100
+++ b/FlyByHelp.st	Wed Feb 20 13:15:02 2019 +0100
@@ -158,8 +158,11 @@
                 "open a resource file editor on the package's resources"
 
                 aView topView application enqueueDelayedAction:[
-                    Tools::InternationalLanguageTranslationEditor 
-                        openOnPackage:((aView topView application ? aView) class package)
+                    |editor|
+                    
+                    editor := Tools::InternationalLanguageTranslationEditor
+                        openOnPackage:((aView topView application ? aView) class package).
+                    editor selectKey:key.
                 ].    
             ].    
             
@@ -187,7 +190,7 @@
 
     "Modified (format): / 25-12-2011 / 10:25:23 / cg"
     "Modified (format): / 16-04-2018 / 16:53:15 / stefan"
-    "Modified: / 20-02-2019 / 12:09:15 / Claus Gittinger"
+    "Modified: / 20-02-2019 / 12:33:08 / Claus Gittinger"
 !
 
 keyRelease:key x:x y:y view:aView