I'm running root.wm_state('zoomed')
on my GUI app but it's just slightly moving my Window towards the bottom right.
I have no clue why it's happening. Can anyone help?
Minimal reproducible example:
import customtkinter as ctk
class MainApp(ctk.CTk):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.title("Test Window")
self.state('zoomed')
mapp = MainApp()
mapp.mainloop()