Commit 91d4278f authored by Terry Jan Reedy's avatar Terry Jan Reedy

Issue #17721: Remove non-functional configuration dialog help button until we

make it actually gives some help when clicked. Patch by Guilherme Simões.
parent 1b759bc4
...@@ -82,9 +82,10 @@ class ConfigDialog(Toplevel): ...@@ -82,9 +82,10 @@ class ConfigDialog(Toplevel):
else: else:
extraKwds=dict(padx=6, pady=3) extraKwds=dict(padx=6, pady=3)
self.buttonHelp = Button(frameActionButtons,text='Help', # Comment out button creation and packing until implement self.Help
command=self.Help,takefocus=FALSE, ## self.buttonHelp = Button(frameActionButtons,text='Help',
**extraKwds) ## command=self.Help,takefocus=FALSE,
## **extraKwds)
self.buttonOk = Button(frameActionButtons,text='Ok', self.buttonOk = Button(frameActionButtons,text='Ok',
command=self.Ok,takefocus=FALSE, command=self.Ok,takefocus=FALSE,
**extraKwds) **extraKwds)
...@@ -98,7 +99,7 @@ class ConfigDialog(Toplevel): ...@@ -98,7 +99,7 @@ class ConfigDialog(Toplevel):
self.CreatePageHighlight() self.CreatePageHighlight()
self.CreatePageKeys() self.CreatePageKeys()
self.CreatePageGeneral() self.CreatePageGeneral()
self.buttonHelp.pack(side=RIGHT,padx=5) ## self.buttonHelp.pack(side=RIGHT,padx=5)
self.buttonOk.pack(side=LEFT,padx=5) self.buttonOk.pack(side=LEFT,padx=5)
self.buttonApply.pack(side=LEFT,padx=5) self.buttonApply.pack(side=LEFT,padx=5)
self.buttonCancel.pack(side=LEFT,padx=5) self.buttonCancel.pack(side=LEFT,padx=5)
......
...@@ -276,7 +276,10 @@ Library ...@@ -276,7 +276,10 @@ Library
IDLE IDLE
---- ----
--Issue #17390: Add Python version to Idle editor window title bar. - 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. Original patches by Edmond Burnett and Kent Johnson.
- Issue #18960: IDLE now ignores the source encoding declaration on the second - Issue #18960: IDLE now ignores the source encoding declaration on the second
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment