#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Sun, 21 Jul 2019 07:09:43 +0200
changeset 4314 23fdaa63f239
parent 4313 d390ecfb7670
child 4315 1a0e7c9e4f80
#BUGFIX by cg class: FlyByHelp changed: #openDeveloperMenuFor:at:
FlyByHelp.st
--- a/FlyByHelp.st	Sat Jul 20 09:07:21 2019 +0200
+++ b/FlyByHelp.st	Sun Jul 21 07:09:43 2019 +0200
@@ -147,8 +147,10 @@
 
         aView isMenu ifTrue:[
             menuItem := aView itemAtPoint:aPoint.
-            m addItem:(MenuItem 
-                label:(('MenuItem''s NameKey: ',(menuItem nameKey printString)) withColor:Color grey)).
+            menuItem notNil ifTrue:[
+                m addItem:(MenuItem 
+                    label:(('MenuItem''s NameKey: ',(menuItem nameKey printString)) withColor:Color grey)).
+            ]. 
         ]. 
         
         m addSeparator. 
@@ -246,7 +248,7 @@
     ].
 
     "Created: / 22-02-2019 / 09:32:35 / Claus Gittinger"
-    "Modified: / 20-07-2019 / 09:06:23 / Claus Gittinger"
+    "Modified: / 21-07-2019 / 07:04:08 / Claus Gittinger"
 ! !
 
 !FlyByHelp methodsFor:'event handling'!