TomSchimansky / TkinterMapView

A python Tkinter widget to display tile based maps like OpenStreetMap or Google Satellite Images.
Creative Commons Zero v1.0 Universal
621 stars 85 forks source link

Toplevel #51

Closed marahateeq closed 2 years ago

marahateeq commented 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() //

TomSchimansky commented 2 years ago

Do you have the newest version installed?

marahateeq commented 2 years ago

yeah ,i believe it's 4.6.3

marahateeq commented 2 years ago

sorry i did it wrong i need customtkinter not tkintermapview