#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 22 Dec 2016 15:41:56 +0100
changeset 17178 adcea9c49837
parent 17177 8d4c9b700726
child 17179 fb0d18f08e6b
#BUGFIX by cg class: Tools::NewSystemBrowser changed: #showInfo: avoid a bug when a notification is shown for a browser which has already removed its navigation canvas (due to queue late arriving changes)
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Thu Dec 22 15:29:39 2016 +0100
+++ b/Tools__NewSystemBrowser.st	Thu Dec 22 15:41:56 2016 +0100
@@ -19830,6 +19830,7 @@
     "Created: / 24.2.2000 / 23:28:06 / cg"
 ! !
 
+
 !NewSystemBrowser methodsFor:'aspects-organization'!
 
 categoryMenuVisible
@@ -40155,6 +40156,7 @@
     HTMLDocumentView openFullOnDocumentationFile:'TOP.html'
 ! !
 
+
 !NewSystemBrowser methodsFor:'menu actions-inheritance'!
 
 inheritanceMenuNavigateToClass
@@ -53509,6 +53511,7 @@
     "Modified: / 19-10-2011 / 16:48:31 / cg"
 ! !
 
+
 !NewSystemBrowser methodsFor:'menus-dynamic-lint'!
 
 smalllintCheckMenuForCategory
@@ -58961,8 +58964,10 @@
             ].
         ].    
     ].
-    self infoLabelHolder value:messageShown.
-
+    navigationState notNil ifTrue:[
+        self infoLabelHolder value:messageShown.
+    ].
+    
     doAnimate ifTrue:[
         lbl notNil ifTrue:[ lbl startAnimation ].    
     ].