Apply configuration changes to current windows. Dynamically update the current parent window instances with some of the configuration changes.
(self)
| 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. |
no test coverage detected