# HG changeset patch # User dmcc # Date 1026030981 0 # Node ID bee0862f4436215401c16591b70e14f86d21a829 # Parent 219d6fcbc28d698358b9e5733915c8a4d4bdf41f Construction colors diff -r 219d6fcbc28d -r bee0862f4436 Widgets/FlyingFader.py --- a/Widgets/FlyingFader.py Sun Jul 07 08:33:52 2002 +0000 +++ b/Widgets/FlyingFader.py Sun Jul 07 08:36:21 2002 +0000 @@ -132,9 +132,11 @@ # blink the trough while the thing's moving if time()%.4>.2: - self.scale.config(troughcolor=self.oldtrough) + # self.scale.config(troughcolor=self.oldtrough) + self.scale.config(troughcolor='orange') else: - self.scale.config(troughcolor='white') + # self.scale.config(troughcolor='white') + self.scale.config(troughcolor='yellow') # colorfade(self.scale, percent) self.after(30, self.gofade)