# HG changeset patch # User David McClosky # Date 1181939801 0 # Node ID b74c50018564eb3cd175255c6155aaa39fadf547 # Parent 962f46713b63c6f5bbaea99df8cc1e4b28a770fe upper button lights indicate "dead"ness diff -r 962f46713b63 -r b74c50018564 bin/keyboardcomposer --- a/bin/keyboardcomposer Fri Jun 15 20:23:43 2007 +0000 +++ b/bin/keyboardcomposer Fri Jun 15 20:36:41 2007 +0000 @@ -179,8 +179,12 @@ for col in range(8): try: subtk = self.slider_table[(self.current_row, col)] + self.sliders.valueOut("button-upper%d" % (col + 1), 127) except KeyError: - pass # unfilled bottom row has holes + # unfilled bottom row has holes (plus rows with incomplete + # groups + self.sliders.valueOut("button-upper%d" % (col + 1), 0) + continue self.send_to_hw(subtk.name, col + 1)