summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configDialog.py
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-03-28 03:47:04 (GMT)
committerNed Deily <nad@acm.org>2014-03-28 03:47:04 (GMT)
commit57847df4e59015c141e645b47112829cf41b582a (patch)
tree957c78b3e8217ee5ab75e5ae488c85dc40d7349c /Lib/idlelib/configDialog.py
parentb693e9fc5bed8c8375e47a2f189931a4faece30f (diff)
downloadcpython-57847df4e59015c141e645b47112829cf41b582a.zip
cpython-57847df4e59015c141e645b47112829cf41b582a.tar.gz
cpython-57847df4e59015c141e645b47112829cf41b582a.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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py
index 267ed93..ace749b7 100644
--- a/Lib/idlelib/configDialog.py
+++ b/Lib/idlelib/configDialog.py
@@ -71,7 +71,7 @@ class ConfigDialog(Toplevel):
page_names=['Fonts/Tabs','Highlighting','Keys','General'])
frameActionButtons = Frame(self,pady=2)
#action buttons
- if macosxSupport.runningAsOSXApp():
+ if macosxSupport.isAquaTk():
# Changing the default padding on OSX results in unreadable
# text in the buttons
paddingArgs={}