From: Guilherme Polo Date: Tue, 18 Aug 2009 16:39:36 +0000 (+0000) Subject: Added missing static option for OptionMenu. Issue #5961. X-Git-Tag: v2.7a1~637 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f1fa214c500100f5ee43463f33c11596319c437;p=thirdparty%2FPython%2Fcpython.git Added missing static option for OptionMenu. Issue #5961. --- diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index d69fb3a104fd..26162520e236 100755 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -1201,7 +1201,8 @@ class OptionMenu(TixWidget): menu Menu""" def __init__(self, master, cnf={}, **kw): - TixWidget.__init__(self, master, 'tixOptionMenu', ['options'], cnf, kw) + TixWidget.__init__(self, master, 'tixOptionMenu', + ['labelside', 'options'], cnf, kw) self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton') self.subwidget_list['menu'] = _dummyMenu(self, 'menu')