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.

classification
Title: Bottom buttons of IDLE Preferences Pane on Mac not wide enough for their text.
Type: behavior Stage:
Components: IDLE Versions: Python 3.0, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: MLModel, ronaldoussoren, wordtech
Priority: normal Keywords: patch

Created on 2008-09-16 20:56 by MLModel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
configDialog.patch wordtech, 2008-12-30 02:29
ronald-configDialog.patch ronaldoussoren, 2009-02-12 16:03
Messages (4)
msg73310 - (view) Author: Mitchell Model (MLModel) Date: 2008-09-16 20:56
The text of the buttons on the bottom of the Mac IDLE Preferences pane
is cut off in 2.6rc1 and 3.0b3 (framework builds).  This was not true in
2.5.1.
msg78498 - (view) Author: Kevin Walzer (wordtech) * Date: 2008-12-30 02:29
The attached patch to configDialog.py fixes this problem--all that was 
needed was to remove the internal padding in the buttons.
msg81775 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2009-02-12 16:03
I've committed the ronald-configDialog.patch to 3.1 and 3.0. This does 
mostly the same as Kevin's patch, but only on OSX (that is, I check for 
OSX and don't add the padding arguments in that case). 

I haven't applied Kevin's patch as is because I don't know if that will 
break other platforms and the 3.0.1 release is very near. 

Committed as r69542 (3.1) and r69543 (3.0)

Still need to commit the same patch for 2.6
msg83139 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2009-03-04 21:35
Fixed for the trunk and 2.6 as well.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48133
2009-03-04 21:35:52ronaldoussorensetstatus: open -> closed
resolution: accepted -> fixed
messages: + msg83139
2009-02-12 16:04:00ronaldoussorensetfiles: + ronald-configDialog.patch
resolution: accepted
messages: + msg81775
nosy: + ronaldoussoren
2008-12-30 02:29:22wordtechsetfiles: + configDialog.patch
type: behavior
messages: + msg78498
keywords: + patch
nosy: + wordtech
2008-09-16 20:56:24MLModelcreate