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 mark
Recipients mark
Date 2020-09-11.22:42:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599864149.95.0.416329554824.issue41765@roundup.psfhosted.org>
In-reply-to
Content
This tiny test application illustrates the problem:
```python
#!/usr/bin/env python3
import tkinter as tk
app = tk.Tk()
app.withdraw()
app.title('Test App')
app.deiconify()
app.mainloop()
```
When run on Linux with XFCE the task bar entry shows the text 'Test App', but the task switcher shows 'Tk' rather than the title text.
History
Date User Action Args
2020-09-11 22:42:29marksetrecipients: + mark
2020-09-11 22:42:29marksetmessageid: <1599864149.95.0.416329554824.issue41765@roundup.psfhosted.org>
2020-09-11 22:42:29marklinkissue41765 messages
2020-09-11 22:42:29markcreate