From: <cl...@us...> - 2002-05-31 06:18:46
|
Update of /cvsroot/todo-manager/todo-manager In directory usw-pr-cvs1:/tmp/cvs-serv3033 Modified Files: Tag: dev-bronze interface.py Log Message: Making use of all of the things I added to ObjectListbox Index: interface.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/Attic/interface.py,v retrieving revision 1.1.2.28 retrieving revision 1.1.2.29 diff -u -d -r1.1.2.28 -r1.1.2.29 --- interface.py 24 May 2002 15:40:08 -0000 1.1.2.28 +++ interface.py 31 May 2002 06:18:42 -0000 1.1.2.29 @@ -304,7 +304,9 @@ tasklist = self._taskList # Set the item colors for the listbox - tasklist.change_item_color(colors["itembg"], colors["itemselbg"]) + tasklist['itemcolor'] = colors['itembg'] + tasklist['selectioncolor'] = colors['itemselbg'] + # If any listbox columns have been turned visible/invisible tasklist.show_column(0, dlg._show_priority.get()) tasklist.show_column(2, dlg._show_duedate.get()) |