changeset 140:8e6165bc1ca5

try to show levels more often (it's still not often enough)
author drewp
date Sun, 15 Jun 2003 15:18:41 +0000
parents 83e2c4ceb79a
children 2dfe2c0ba052
files light8/dmxserver.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/light8/dmxserver.py	Sat Jun 14 16:19:40 2003 +0000
+++ b/light8/dmxserver.py	Sun Jun 15 15:18:41 2003 +0000
@@ -94,7 +94,7 @@
             if (self.num_unshown_updates is None or # first time
                 self.options.fast_updates or # show always
                 (self.combinedlevels!=self.lastshownlevels and # changed
-                 self.num_unshown_updates>10)): # not too frequent
+                 self.num_unshown_updates>5)): # not too frequent
                 self.num_unshown_updates=0
                 self.printlevels()
                 self.lastshownlevels=self.combinedlevels[:]