diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-27 03:27:38 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-01-27 03:27:38 (GMT) |
commit | 908669bdb35e1fb9bbb4ae8e34a663f6b38b8554 (patch) | |
tree | 8dec8ddebea3c1e07e3fe02b3a17098eae0bd4ed | |
parent | 0c5b5d457103d44dc016a85083455ac9e08e1675 (diff) | |
parent | 91d4278fba54610443cf7c1422f09e51d7aef567 (diff) | |
download | cpython-908669bdb35e1fb9bbb4ae8e34a663f6b38b8554.zip cpython-908669bdb35e1fb9bbb4ae8e34a663f6b38b8554.tar.gz cpython-908669bdb35e1fb9bbb4ae8e34a663f6b38b8554.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.
-rw-r--r-- | Lib/idlelib/configDialog.py | 9 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index 1f4a3a5..efe5c43 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -82,9 +82,10 @@ class ConfigDialog(Toplevel): else: extraKwds=dict(padx=6, pady=3) - self.buttonHelp = Button(frameActionButtons,text='Help', - command=self.Help,takefocus=FALSE, - **extraKwds) +# Comment out button creation and packing until implement self.Help +## self.buttonHelp = Button(frameActionButtons,text='Help', +## command=self.Help,takefocus=FALSE, +## **extraKwds) self.buttonOk = Button(frameActionButtons,text='Ok', command=self.Ok,takefocus=FALSE, **extraKwds) @@ -98,7 +99,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) @@ -143,6 +143,9 @@ Library IDLE ---- +- Issue #17721: Remove non-functional configuration dialog help button until we + make it actually gives some help when clicked. Patch by Guilherme Simões. + - Issue #17390: Add Python version to Idle editor window title bar. Original patches by Edmond Burnett and Kent Johnson. |