CustomTkinter
CustomTkinter copied to clipboard
Progresbar reset
So if we start the app and the Progress is set to mode='indeterminate' it has a default Starting position.

so after we start it with .start and stop it with .stop
i cant seem to find a way to reset its position

.set does not work here also i didnt find anything like .reset
There's apparently no support for that yet but you can first destroy and pack it again, it will switch to the default position.
progressbar.stop()
progressbar.destroy()
progressbar = customtkinter.CTkProgressBar(master=root, mode='indeterminate')
progressbar.pack(padx=20, pady=30)
oke thanks, @TomSchimansky can we maybe add some function to the code in the future that can do this?