Close the application completely.
(self)
| 1756 | self._close_completely() |
| 1757 | |
| 1758 | def _close_completely(self): |
| 1759 | """Close the application completely.""" |
| 1760 | if self.running: |
| 1761 | if messagebox.askyesno(get_text("confirm_title"), get_text("exit_confirm")): |
| 1762 | self._stop() |
| 1763 | else: |
| 1764 | return |
| 1765 | |
| 1766 | self._save_config() |
| 1767 | self.tray.stop() |
| 1768 | self.root.destroy() |
| 1769 | |
| 1770 | def run(self): |
| 1771 | """Run the application.""" |
no test coverage detected