From 57f9b7298afc12da0717531216e2990e6e2ffc20 Mon Sep 17 00:00:00 2001 From: Guilherme Polo Date: Tue, 18 Aug 2009 13:33:30 +0000 Subject: [PATCH] Mark the "radio" option of Tix.CheckList as static. --- Lib/lib-tk/Tix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index d2ede366aa..91b27f53d0 100755 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -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') -- 2.50.0