Add entry parameter to HList.item_cget. Fixes bug #466981.
This commit is contained in:
parent
0eb2a6e974
commit
3e048485f9
|
@ -730,8 +730,8 @@ class HList(TixWidget):
|
|||
c = self.tk.call(self._w, 'info', 'selection')
|
||||
return self.tk.splitlist(c)
|
||||
|
||||
def item_cget(self, col, opt):
|
||||
return self.tk.call(self._w, 'item', 'cget', col, opt)
|
||||
def item_cget(self, entry, col, opt):
|
||||
return self.tk.call(self._w, 'item', 'cget', entry, col, opt)
|
||||
|
||||
def item_configure(self, entry, col, cnf={}, **kw):
|
||||
if cnf is None:
|
||||
|
|
Loading…
Reference in New Issue