class: ProgressIndicator
authorClaus Gittinger <cg@exept.de>
Sun, 01 Mar 2015 00:44:28 +0100
changeset 4724 281883681a1e
parent 4723 c5f32ebfec14
child 4725 1596ff7d02e0
class: ProgressIndicator changed: #startBusyIndicationProcess
ProgressIndicator.st
--- a/ProgressIndicator.st	Fri Feb 27 19:56:26 2015 +0100
+++ b/ProgressIndicator.st	Sun Mar 01 00:44:28 2015 +0100
@@ -1211,7 +1211,7 @@
         busyPosition := 0.
         busyDelta := 3.
         busyIndicationProcess := [
-                                    [self realized] whileTrue:[
+                                    [self realized and:[self topView realized]] whileTrue:[
                                         Delay waitForSeconds:0.1.
                                         self shown ifTrue:[
                                             self updateBusyIndicatorPosition.
@@ -1729,10 +1729,10 @@
 !ProgressIndicator class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressIndicator.st,v 1.78 2015-02-13 15:06:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressIndicator.st,v 1.79 2015-02-28 23:44:28 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressIndicator.st,v 1.78 2015-02-13 15:06:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ProgressIndicator.st,v 1.79 2015-02-28 23:44:28 cg Exp $'
 ! !