The code below is a section of a project I am working on in tkinter. When I call the `-fullscreen=True, the close out button in the top right disappears. Is there any way to fix this?
def homeScreen():
global home
home = Tk()
home.attributes("-fullscreen", True)
listButton = Button(home, text = 'Listify', command = listifyScreen)
enterButton = Button(home, text = 'No Enter', command = enterScreen)
#separateButton = Button(home, text = 'Separate', command = separateScreen)
listButton.pack()
enterButton.pack()
home.mainloop()
homeScreen()