From 786f5ba524253a168dfa5735eed2520fe0b3766e Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Thu, 11 Feb 2016 02:01:04 -0500 Subject: [PATCH] Don't squelch-break solo-follow if breaker is muted. --- src/demod/DemodulatorThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demod/DemodulatorThread.cpp b/src/demod/DemodulatorThread.cpp index df44786..e7790d5 100644 --- a/src/demod/DemodulatorThread.cpp +++ b/src/demod/DemodulatorThread.cpp @@ -150,7 +150,7 @@ void DemodulatorThread::run() { if (squelchEnabled) { if (!squelched && !squelchBreak) { - if (wxGetApp().getSoloMode()) { + if (wxGetApp().getSoloMode() && !muted.load()) { wxGetApp().getDemodMgr().setActiveDemodulator(demodInstance, false); } squelchBreak = true;