I am trying to make a Tkinter app, and it has no title bar.
I have added revisability with size grip, moving the window around and minimizing
However, I am trying to make the Tkinter window full sized, AND SHOW THE TASKBAR
here is my code
def funel():
root.overrideredirect(False)
root.state('zoomed')
root.overrideredirect(True)
messagebox.showerror("This feature is not added yet", "This feature is not added yet. Please give me help")
fullscreen_btn.bind("<Button-1>", lambda event: funel_exit())
So yeah... it Fullscreen's, however it does hide the taskbar. I WANT THE TASKBAR NOT TO BE HIDDEN
if my question aint clear, please inform.