Apply config changes and leave dialog open.
(self)
| 177 | self.destroy() |
| 178 | |
| 179 | def apply(self): |
| 180 | """Apply config changes and leave dialog open.""" |
| 181 | self.deactivate_current_config() |
| 182 | changes.save_all() |
| 183 | self.extpage.save_all_changed_extensions() |
| 184 | self.activate_config_changes() |
| 185 | |
| 186 | def cancel(self): |
| 187 | """Dismiss config dialog. |
no test coverage detected