#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Sat, 07 Apr 2018 05:24:12 +0200
changeset 18032 79df2ea14f48
parent 18031 5a3f12aad45b
child 18033 35ab63777f8e
#BUGFIX by cg class: Tools::NewSystemBrowser changed: #helpTextFor:at: oops - canvas can be nil.
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Thu Mar 29 13:02:17 2018 +0200
+++ b/Tools__NewSystemBrowser.st	Sat Apr 07 05:24:12 2018 +0200
@@ -25522,7 +25522,7 @@
 helpTextFor:aWidget at:aPoint
     |action info label|
 
-    (navigationState notNil and:[navigationState canvas]) notNil ifTrue:[
+    (navigationState notNil and:[navigationState canvas notNil]) ifTrue:[
         aWidget = (navigationState canvas builder componentAt:'InfoLabel') ifTrue:[
             action := aWidget actionAt:aPoint.
             "/ Transcript show:'action under info label:'; showCR:action.