diff options
author | Ned Deily <nad@acm.org> | 2014-03-28 03:49:14 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-03-28 03:49:14 (GMT) |
commit | b7601676b07c7c8e79af9e7818a783b966612c34 (patch) | |
tree | 7a3d48649890a9901747b98df2a9ed13ac13d2db /Lib/idlelib/configDialog.py | |
parent | e7d532fbc9c13e00b1e5c6c0db2dba31d1212de7 (diff) | |
download | cpython-b7601676b07c7c8e79af9e7818a783b966612c34.zip cpython-b7601676b07c7c8e79af9e7818a783b966612c34.tar.gz cpython-b7601676b07c7c8e79af9e7818a783b966612c34.tar.bz2 |
Issue #17654: Ensure IDLE menus are customized properly on OS X for
non-framework builds and for all variants of Tk.
Diffstat (limited to 'Lib/idlelib/configDialog.py')
-rw-r--r-- | Lib/idlelib/configDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index efe5c43..fefe42b 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -74,7 +74,7 @@ class ConfigDialog(Toplevel): frameActionButtons = Frame(self,pady=2) #action buttons - if macosxSupport.runningAsOSXApp(): + if macosxSupport.isAquaTk(): # Surpress the padx and pady arguments when # running as IDLE.app, otherwise the text # on these buttons will not be readable. |