[Python-checkins] r74519 - python/trunk/Lib/lib-tk/Tix.py

guilherme.polo python-checkins at python.org
Tue Aug 18 18:39:36 CEST 2009


Author: guilherme.polo
Date: Tue Aug 18 18:39:36 2009
New Revision: 74519

Log:
Added missing static option for OptionMenu. Issue #5961.

Modified:
   python/trunk/Lib/lib-tk/Tix.py

Modified: python/trunk/Lib/lib-tk/Tix.py
==============================================================================
--- python/trunk/Lib/lib-tk/Tix.py	(original)
+++ python/trunk/Lib/lib-tk/Tix.py	Tue Aug 18 18:39:36 2009
@@ -1201,7 +1201,8 @@
     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')
 


More information about the Python-checkins mailing list