Changeset 131
- Timestamp:
- 04/14/08 01:27:52 (5 months ago)
- Files:
-
- sucrose/trunk/python/keypad_tk.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sucrose/trunk/python/keypad_tk.py
r129 r131 3 3 import Tkinter 4 4 import sys 5 import os 5 6 6 7 from api import user_interface, authenticator … … 35 36 36 37 self.window = Tkinter.Tk() 37 self.window.config(cursor='@emptycursor.xbm white') 38 cursor_file = os.path.join(os.path.dirname(__file__), 'emptycursor.xbm') 39 self.window.config(cursor='@%s white' % cursor_file) 38 40 self.window.title('Sucrose') 39 41 self.window.geometry('800x600+0+0')
