diff --git a/twander.py b/twander.py index cac36b8..46afc94 100755 --- a/twander.py +++ b/twander.py @@ -4,7 +4,7 @@ PROGNAME = "twander" -RCSID = "$Id: twander.py,v 1.56 2002/11/16 22:12:10 tundra Exp $" +RCSID = "$Id: twander.py,v 1.57 2002/11/16 22:31:51 tundra Exp $" VERSION = RCSID.split()[2] @@ -823,6 +823,13 @@ UIroot = Tk() UI = twanderUI(UIroot) +# Make the Tk window the topmost in the Z stack. +# 'Gotta do this or Win32 will not return input +# focus to our program after a startup warning +# display. + +UIroot.tkraise() + ##### # Setup global UI variables #####