Changeset - 3cbe7110d8f7
[Not reviewed]
default
0 1 0
dmcc - 22 years ago 2002-07-07 12:11:42

cleanup imports, fix backwards colors in changing level direction
cleanup imports, fix backwards colors in changing level direction
indicators
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
light8/rsn.py
Show inline comments
 
@@ -3,8 +3,8 @@ from __future__ import nested_scopes
 

	
 
from Tkinter import *
 
from time import sleep
 
from signal import *
 
import sys, thread, cPickle, math
 
from signal import signal, SIGINT
 
import sys, cPickle
 

	
 
import io
 
from uihelpers import *
 
@@ -112,9 +112,9 @@ class Lightboard:
 
                lab.config(text="%d" % lev)
 
                colorlabel(lab)
 
                if lev < oldlev:
 
                    numlab['bg'] = 'red'
 
                    numlab['bg'] = 'blue'
 
                else:
 
                    numlab['bg'] = 'blue'
 
                    numlab['bg'] = 'red'
 
            else:
 
                numlab['bg'] = 'lightPink'
 

	
0 comments (0 inline, 0 general)