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 rafe.kettler
Recipients rafe.kettler
Date 2010-10-22.02:34:23
SpamBayes Score 1.1763202e-07
Marked as misclassified No
Message-id <1287714866.92.0.753573590678.issue10171@psf.upfronthosting.co.za>
In-reply-to
Content
Some of the dialogs in Tkinter don't correctly show buttons in newer versions of Windows (XP, Vista, 7). Instead, they use square Win2000-and-before-type buttons. Here's some Python 2.7 code that illustrates this:

import tkMessageBox
tkMessageBox.showinfo()

import tkColorChooser
tkColorChooser.askcolor()

I attached a screenshot as well, illustrating what is meant by "ugly buttons."

I'm not sure if this is on the Tk or Tkinter side, but since the rest of Tkinter uses new-style buttons, these few objects should too (as far as I'm aware, these are the only objects that exhibit this behavior.
History
Date User Action Args
2010-10-22 02:34:27rafe.kettlersetrecipients: + rafe.kettler
2010-10-22 02:34:26rafe.kettlersetmessageid: <1287714866.92.0.753573590678.issue10171@psf.upfronthosting.co.za>
2010-10-22 02:34:24rafe.kettlerlinkissue10171 messages
2010-10-22 02:34:24rafe.kettlercreate