# HG changeset patch # User drewp # Date 1055690321 0 # Node ID 8e6165bc1ca5d2d9b138f552a481988257a2cefc # Parent 83e2c4ceb79a0ba4feb18df722bfc9c38fe5b10c try to show levels more often (it's still not often enough) diff -r 83e2c4ceb79a -r 8e6165bc1ca5 light8/dmxserver.py --- 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[:]