`NewSystemBrowser`: fix condition in `#flyByHelpTextFor:at:` jv
authorJan Vrany <jan.vrany@labware.com>
Mon, 17 Jan 2022 15:28:05 +0000
branchjv
changeset 19628 0317f482c5c8
parent 19627 5885d1a69511
child 19629 8cdd7e139669
`NewSystemBrowser`: fix condition in `#flyByHelpTextFor:at:` The condition did not make sense at all and resulted in `#ifTrue:` on non-boolean receiver!
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Fri Dec 03 12:28:15 2021 +0000
+++ b/Tools__NewSystemBrowser.st	Mon Jan 17 15:28:05 2022 +0000
@@ -1,7 +1,7 @@
 "
  COPYRIGHT (c) 2000 by eXept Software AG
  COPYRIGHT (c) 2015-2018 Jan Vrany
- COPYRIGHT (c) 2020-2021 LabWare
+ COPYRIGHT (c) 2020-2022 LabWare
  COPYRIGHT (c) 2021 Patrik Svestka
               All Rights Reserved
 
@@ -85,7 +85,7 @@
 "
  COPYRIGHT (c) 2000 by eXept Software AG
  COPYRIGHT (c) 2015-2018 Jan Vrany
- COPYRIGHT (c) 2020-2021 LabWare
+ COPYRIGHT (c) 2020-2022 LabWare
  COPYRIGHT (c) 2021 Patrik Svestka
               All Rights Reserved
 
@@ -25239,7 +25239,7 @@
 flyByHelpTextFor: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.
@@ -25260,6 +25260,7 @@
     ^ nil
 
     "Modified: / 08-11-2016 / 21:46:26 / cg"
+    "Modified: / 17-01-2022 / 15:20:56 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !NewSystemBrowser methodsFor:'history'!