This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author souch3
Recipients souch3
Date 2021-07-01.20:15:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1625170505.27.0.877381236302.issue44548@roundup.psfhosted.org>
In-reply-to
Content
After running `start` on an indeterminate Progressbar, it animates to one side, goes back to the other and then right before it reaches the end it disappears. I've attached a sample script below and a screen recording. This is running on macOS 11.3 and python 3.9.6 with the tkinter version that is packaged with the 3.9.6 installer. 


```
from tkinter import *
from tkinter.ttk import *
import time

window = Tk()
window.title('Test')
window.geometry('400x250+1000+300')


pb = Progressbar(window, orient=HORIZONTAL, length=100, mode='indeterminate')
pb.pack(expand=True)

Button(window, text='Start', command=pb.start).pack()

window.mainloop()
```
History
Date User Action Args
2021-07-01 20:15:05souch3setrecipients: + souch3
2021-07-01 20:15:05souch3setmessageid: <1625170505.27.0.877381236302.issue44548@roundup.psfhosted.org>
2021-07-01 20:15:05souch3linkissue44548 messages
2021-07-01 20:15:05souch3create