#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Fri, 23 Mar 2018 12:19:42 +0100
changeset 5726 8d3693fffc3e
parent 5723 3019347d6f76
child 5727 246a1c42ce5e
#UI_ENHANCEMENT by cg class: ProgressIndicator changed: #startBusyIndicationProcess smoother display
ProgressIndicator.st
--- a/ProgressIndicator.st	Thu Mar 15 12:28:33 2018 +0100
+++ b/ProgressIndicator.st	Fri Mar 23 12:19:42 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -1212,10 +1214,10 @@
 startBusyIndicationProcess
     busyIndicationProcess isNil ifTrue:[
         busyPosition := 0.
-        busyDelta := 3.
+        busyDelta := 1.
         busyIndicationProcess := [
                                     [self realized and:[self topView realized]] whileTrue:[
-                                        Delay waitForSeconds:0.1.
+                                        Delay waitForSeconds:0.075.
                                         self shown ifTrue:[
                                             self updateBusyIndicatorPosition.
                                         ]