* src/EditSource.py (__init__): set cursor to WATCH before displaying

references; call display_references when idle;
(display_references): set cursor to LEFT_PTR when done.
* src/ListModel.py (__init__): Typo.
* src/Utils.py (bold_label,unbold_label): make work with both
labels and their parent containers.


svn: r4669
This commit is contained in:
Alex Roitman
2005-05-25 05:09:11 +00:00
parent 956b65327a
commit f57b31016f
4 changed files with 40 additions and 15 deletions

View File

@@ -42,7 +42,7 @@ class ListModel:
self.mylist = []
self.data_index = 0
for l in dlist:
if l[3] == TOGGLE:
if l[0] == TOGGLE:
self.mylist.append(TYPE_BOOLEAN)
else:
self.mylist.append(TYPE_STRING)