Kaydet (Commit) 9c679f81 authored tarafından Jack Jansen's avatar Jack Jansen

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

üst 7aeba45b
......@@ -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()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment