#BUGFIX by cg expecco_18_1_0 expecco_18_1_0wa1
authorClaus Gittinger <cg@exept.de>
Tue, 19 Jun 2018 16:45:10 +0200
changeset 8398 d8463a116624
parent 8397 2aa05063c979
child 8399 711d5117299a
#BUGFIX by cg class: SimpleView changed: #isActive BUGFIX: tooltips for windows without a focus view
SimpleView.st
--- a/SimpleView.st	Tue Jun 19 14:58:52 2018 +0200
+++ b/SimpleView.st	Tue Jun 19 16:45:10 2018 +0200
@@ -9328,7 +9328,11 @@
      With click-to-focus behavior, this is obviously the current application.
      Use this query with caution, for example, to suppress tooltips for inactive apps."
 
-    ^ windowGroup notNil and:[windowGroup anyViewHasFocus]
+    ^ windowGroup notNil 
+    and:[windowGroup anyViewHasFocus
+         or:[ self graphicsDevice focusWindowGroup == windowGroup]].
+
+    "Modified: / 19-06-2018 / 14:03:15 / Claus Gittinger"
 !
 
 isBorderedWrapper