From 142a4c87bdf9f460467cfb094a0b64a900c11475 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 5 May 2019 19:46:13 +0200 Subject: [PATCH] proper shutdown of dsp thread --- owrx/source.py | 1 + 1 file changed, 1 insertion(+) diff --git a/owrx/source.py b/owrx/source.py index 2404419..551fcc3 100644 --- a/owrx/source.py +++ b/owrx/source.py @@ -155,6 +155,7 @@ class DspManager(object): def stop(self): self.doRun = False + self.dsp.stop() def setProperty(self, prop, value): self.localProps.getProperty(prop).setValue(value)