Mercurial > code > home > repos > light9
changeset 27:bee0862f4436
Construction colors
author | dmcc |
---|---|
date | Sun, 07 Jul 2002 08:36:21 +0000 |
parents | 219d6fcbc28d |
children | b0342f9ee328 |
files | Widgets/FlyingFader.py |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)