Hide window until it is ready.
This commit is contained in:
parent
91527aa012
commit
6510ff0b07
1 changed files with 2 additions and 0 deletions
2
PGUI.pyw
2
PGUI.pyw
|
@ -87,6 +87,7 @@ class PGUILauncher(tkinter.ttk.Frame):
|
||||||
|
|
||||||
def main(argv):
|
def main(argv):
|
||||||
root = tkinter.Tk()
|
root = tkinter.Tk()
|
||||||
|
root.withdraw()
|
||||||
root.title("PGUI")
|
root.title("PGUI")
|
||||||
root.resizable(0,0)
|
root.resizable(0,0)
|
||||||
|
|
||||||
|
@ -98,6 +99,7 @@ def main(argv):
|
||||||
y_offset = (root.winfo_screenheight() - height) / 2
|
y_offset = (root.winfo_screenheight() - height) / 2
|
||||||
|
|
||||||
root.geometry('%dx%d+%d+%d' % (width, height, x_offset, y_offset-50))
|
root.geometry('%dx%d+%d+%d' % (width, height, x_offset, y_offset-50))
|
||||||
|
root.deiconify()
|
||||||
root.mainloop()
|
root.mainloop()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in a new issue