We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ce77c commit a71aafeCopy full SHA for a71aafe
sqlit/domains/shell/ui/mixins/ui_navigation.py
@@ -166,6 +166,12 @@ def action_toggle_fullscreen(self: UINavigationMixinHost) -> None:
166
167
def action_quit(self: UINavigationMixinHost) -> None:
168
"""Quit the application."""
169
+ close_worker = getattr(self, "_close_process_worker_client", None)
170
+ if callable(close_worker):
171
+ try:
172
+ close_worker()
173
+ except Exception:
174
+ pass
175
self.exit()
176
177
def action_show_help(self: UINavigationMixinHost) -> None:
0 commit comments