Closed marahateeq closed 2 years ago
In windows Toplevel window stop showing when i add the top.resizable(width=False,height=False) in mac os it's ok could u please check it
code // import customtkinter as t
root=t.CTk() root.geometry('600x300+100+100') root.resizable(width=False,height=False) def win(): top=t.CTkToplevel(root) top.geometry('200x200+600+600') top.resizable(width=False,height=False)
t.CTkButton(root,text='new win',command=win).pack()
root.mainloop() //
Do you have the newest version installed?
yeah ,i believe it's 4.6.3
sorry i did it wrong i need customtkinter not tkintermapview
In windows Toplevel window stop showing when i add the top.resizable(width=False,height=False) in mac os it's ok could u please check it
code // import customtkinter as t
root=t.CTk() root.geometry('600x300+100+100') root.resizable(width=False,height=False) def win(): top=t.CTkToplevel(root) top.geometry('200x200+600+600') top.resizable(width=False,height=False)
t.CTkButton(root,text='new win',command=win).pack()
root.mainloop() //