CustomTkinter
CustomTkinter copied to clipboard
CTkScrollableFrame is not destroyed
CTk Scrollable Frame is not destroyed after using the .destroy()
method.
import customtkinter as ctk
root = ctk.CTk()
frame = ctk.CTkScrollableFrame(root)
frame.pack()
frame.destroy()
root.mainloop()
@Akascape , use .pack_forget()
.
@YoussefEssalhi Destroying and forgetting the widget is different. I know other methods to remove the widget, I am only reporting this bug.
@Akascape, utiliser
.pack_forget()
.
thanks dude ! you solved my problem!