diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-27 03:24:17 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-27 03:24:17 (GMT) |
commit | 1d9b9215f026ea36d10212a100bde7b91c90bf2e (patch) | |
tree | 57445fde61123477cda776355c7624e26072b0a1 /Lib/idlelib | |
parent | e7ec1be8c7938c56d1f1c4a337e62803a11c84a5 (diff) | |
download | cpython-1d9b9215f026ea36d10212a100bde7b91c90bf2e.zip cpython-1d9b9215f026ea36d10212a100bde7b91c90bf2e.tar.gz cpython-1d9b9215f026ea36d10212a100bde7b91c90bf2e.tar.bz2 |
Issue #17721: Remove non-functional configuration dialog help button until we
make it actually gives some help when clicked. Patch by Guilherme Simões.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/configDialog.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index b707fc3..267ed93 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -78,9 +78,10 @@ class ConfigDialog(Toplevel): else: paddingArgs={'padx':6, 'pady':3} - self.buttonHelp = Button(frameActionButtons,text='Help', - command=self.Help,takefocus=FALSE, - **paddingArgs) +# Comment out button creation and packing until implement self.Help +## self.buttonHelp = Button(frameActionButtons,text='Help', +## command=self.Help,takefocus=FALSE, +## **paddingArgs) self.buttonOk = Button(frameActionButtons,text='Ok', command=self.Ok,takefocus=FALSE, **paddingArgs) @@ -94,7 +95,7 @@ class ConfigDialog(Toplevel): self.CreatePageHighlight() self.CreatePageKeys() self.CreatePageGeneral() - self.buttonHelp.pack(side=RIGHT,padx=5) +## self.buttonHelp.pack(side=RIGHT,padx=5) self.buttonOk.pack(side=LEFT,padx=5) self.buttonApply.pack(side=LEFT,padx=5) self.buttonCancel.pack(side=LEFT,padx=5) |