From: Scott Worley Date: Tue, 7 Oct 2025 07:04:17 +0000 (-0700) Subject: Stop streams on exit X-Git-Url: http://git.scottworley.com/srec/commitdiff_plain/aea97a2a113605028062f7feb76860bd38383d71?ds=sidebyside Stop streams on exit --- diff --git a/srec.py b/srec.py index c4d5d54..b3abee1 100644 --- a/srec.py +++ b/srec.py @@ -191,6 +191,7 @@ def main() -> None: app = Gtk.Application(application_id='net.chkno.srec') app.connect('activate', on_activate) app.run(None) + stop_streams() if __name__ == '__main__':