mirror of https://github.com/python/cpython
Mark the "radio" option of Tix.CheckList as static.
This commit is contained in:
parent
6c823f8720
commit
57f9b7298a
|
@ -1548,7 +1548,7 @@ class CheckList(TixWidget):
|
|||
# FIXME: It should inherit -superclass tixTree
|
||||
def __init__(self, master=None, cnf={}, **kw):
|
||||
TixWidget.__init__(self, master, 'tixCheckList',
|
||||
['options'], cnf, kw)
|
||||
['options', 'radio'], cnf, kw)
|
||||
self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
|
||||
self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
|
||||
self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
|
||||
|
|
Loading…
Reference in New Issue