In a MultiList select all cells in the row, not only the first one.

This commit is contained in:
Jack Jansen 2003-02-12 12:47:00 +00:00
parent 7aeba45b84
commit 9c679f8128

View file

@ -573,9 +573,10 @@ class MultiList(List):
return
set_sel = self._list.LSetSelect
for i in range(len(self.items)):
if i in selection:
set_sel(1, (0, i))
else:
set_sel(0, (0, i))
for j in range(len(self.items[i])):
if i in selection:
set_sel(1, (j, i))
else:
set_sel(0, (j, i))
#self._list.LAutoScroll()