#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Fri, 24 May 2019 12:43:48 +0200
changeset 8682 c2afe5565d3a
parent 8681 66d2c2026494
child 8683 eb1fac1883e3
#BUGFIX by stefan class: TopView changed: #raiseDeiconified (send #map instead of #realize) need this fix for expecco
TopView.st
--- a/TopView.st	Fri May 24 12:42:22 2019 +0200
+++ b/TopView.st	Fri May 24 12:43:48 2019 +0200
@@ -1212,8 +1212,12 @@
     "deiconify & bring to front"
 
     self isCollapsed ifTrue:[
-        "/ self map.
-        self realize.
+        self map.
+"/ This was realize until 2019-05-24. 
+"/ realize has the (very bad) effect, that this is called again:
+"/      postRealize -> ApplicationModel>>#opened -> #postOpenWith
+"/      Expecco::Browser>>#installToolbarMenus  (or, worse #automaticRepopenLastUsedTestSuiteOnStart)
+"/        self realize.
     ].
     self raise
 
@@ -1223,6 +1227,7 @@
 
     "Modified: / 03-05-1996 / 23:49:36 / stefan"
     "Modified (format): / 23-02-2019 / 18:52:52 / Claus Gittinger"
+    "Modified (comment): / 24-05-2019 / 12:17:09 / Stefan Vogel"
 !
 
 setForegroundWindow