mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Issue #24782: Finish converting the Configure Extension dialog into a new
tab in the IDLE Preferences dialog. Code patch by Mark Roseman.
This commit is contained in:
parent
5805ddeedb
commit
93f3542ae4
6 changed files with 200 additions and 254 deletions
|
@ -191,8 +191,6 @@ class EditorWindow(object):
|
|||
text.bind("<<python-docs>>", self.python_docs)
|
||||
text.bind("<<about-idle>>", self.about_dialog)
|
||||
text.bind("<<open-config-dialog>>", self.config_dialog)
|
||||
text.bind("<<open-config-extensions-dialog>>",
|
||||
self.config_extensions_dialog)
|
||||
text.bind("<<open-module>>", self.open_module)
|
||||
text.bind("<<do-nothing>>", lambda event: "break")
|
||||
text.bind("<<select-all>>", self.select_all)
|
||||
|
@ -514,10 +512,6 @@ class EditorWindow(object):
|
|||
# Synchronize with macosxSupport.overrideRootMenu.config_dialog.
|
||||
configDialog.ConfigDialog(self.top,'Settings')
|
||||
|
||||
def config_extensions_dialog(self, event=None):
|
||||
"Handle Options 'Configure Extensions' event."
|
||||
configDialog.ConfigExtensionsDialog(self.top)
|
||||
|
||||
def help_dialog(self, event=None):
|
||||
"Handle Help 'IDLE Help' event."
|
||||
# Synchronize with macosxSupport.overrideRootMenu.help_dialog.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue