Tkinter OptionMenu: width of items in menu

2004-12-29 Thread mariox19
Hello, The Tkinter OptionMenu widget has me a bit confused. I have set up an OptionMenu to expand along the X axis as the window expands. What I find though is that the width of the submenu displaying the list of items in the menu does not expand. This is the object I'm talking about: popup =

Text widget updates only after calling method exits (threading issue?)

2007-12-11 Thread mariox19
Are Tkinter widgets running on their own thread? If I try to make a simple application that will print the letters A to Z to a Tkinter Text widget, and I space the printing of each letter by 1 second, it seems no text will appear in the Text widget until the method exits. Take a look at this snip

Re: Text widget updates only after calling method exits (threading issue?)

2007-12-12 Thread mariox19
io On Dec 12, 3:43 am, "Eric Brunel" <[EMAIL PROTECTED]> wrote: > On Wed, 12 Dec 2007 02:58:37 +0100, mariox19 <[EMAIL PROTECTED]> wrote: > > Are Tkinter widgets running on their own thread? > > No. And usually, GUI toolkits and threads don't mix well... >