[issue2638] tkSimpleDialog Window Flashing

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Fixed in r70223 and r70225. Thanks for reporting. -- resolution: accepted -> fixed status: open -> closed versions: -Python 3.0 ___ Python tracker ___

[issue2638] tkSimpleDialog Window Flashing

2008-12-31 Thread Guilherme Polo
Guilherme Polo added the comment: Dropped for inclusion in python 2.5, but should still be considered for trunk and py3k. -- resolution: -> accepted versions: +Python 2.7, Python 3.0, Python 3.1 -Python 2.5 ___ Python tracker

[issue2638] tkSimpleDialog Window Flashing

2008-07-18 Thread Ron Longo
Ron Longo <[EMAIL PROTECTED]> added the comment: Excellent! That solution works as well. ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-b

[issue2638] tkSimpleDialog Window Flashing

2008-07-17 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: It would be more appropriate to properly use withdraw and deiconify then. I'm attaching a patch that uses them. -- keywords: +patch Added file: http://bugs.python.org/file10931/issue_2638.diff ___

[issue2638] tkSimpleDialog Window Flashing

2008-07-16 Thread Ron Longo
Ron Longo <[EMAIL PROTECTED]> added the comment: Correct. overrideredirect only enables/disables borders. However, what appears as a "flash" when the dialog box first appears is actually a window with only borders being drawn (no contents). Disabling borders BEFORE drawing anything prevents

[issue2638] tkSimpleDialog Window Flashing

2008-04-15 Thread Guilherme Polo
Guilherme Polo <[EMAIL PROTECTED]> added the comment: Isn't overrideredirect only used to enable/disable borders in the window ? Why doing this fix what you described ? Also, make a patch against python-trunk instead of sending the entire file. -- nosy: +gpolo __

[issue2638] tkSimpleDialog Window Flashing

2008-04-15 Thread Ron Longo Work
New submission from Ron Longo Work <[EMAIL PROTECTED]>: When a Tkinter window comes up that uses tkSimpleDialog to construct a dialog box, the window first flashes on the screen as an unpopulated top-level window, before being drawn in its completed state. This problem is easily corrected by a