MCPcopy Index your code
hub / github.com/python/cpython / activate_config_changes

Method activate_config_changes

Lib/idlelib/configdialog.py:218–232  ·  view source on GitHub ↗

Apply configuration changes to current windows. Dynamically update the current parent window instances with some of the configuration changes.

(self)

Source from the content-addressed store, hash-verified

216 instance.RemoveKeybindings()
217
218 def activate_config_changes(self):
219 """Apply configuration changes to current windows.
220
221 Dynamically update the current parent window instances
222 with some of the configuration changes.
223 """
224 for instance in self.parent.instance_dict:
225 instance.ResetColorizer()
226 instance.ResetFont()
227 instance.set_notabs_indentwidth()
228 instance.ApplyKeybindings()
229 instance.reset_help_menu_entries()
230 instance.update_cursor_blink()
231 for klass in reloadables:
232 klass.reload()
233
234
235# class TabPage(Frame): # A template for Page classes.

Callers 3

applyMethod · 0.95
delete_customMethod · 0.45
delete_custom_keysMethod · 0.45

Calls 7

ApplyKeybindingsMethod · 0.80
update_cursor_blinkMethod · 0.80
ResetColorizerMethod · 0.45
ResetFontMethod · 0.45
reloadMethod · 0.45

Tested by

no test coverage detected