From 715d1d0c05828fc5d9737a5c12ba3b0fd4544984 Mon Sep 17 00:00:00 2001 From: superdimensional Date: Wed, 5 May 2021 06:04:53 -0400 Subject: [PATCH] enabled fullscreen --- omnitrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omnitrix.py b/omnitrix.py index 8e99f99..86e012c 100644 --- a/omnitrix.py +++ b/omnitrix.py @@ -12,7 +12,7 @@ background = StringVar() background.set("#70b607") # creates var and assigns it to default color root.title("Omnitrix") -# root.attributes('-fullscreen', True) +root.attributes('-fullscreen', True) root.geometry("640x480") root.configure(bg=background.get()) root.columnconfigure(1, weight=1)