Don't squelch-break solo-follow if breaker is muted.

This commit is contained in:
Charles J. Cliffe 2016-02-11 02:01:04 -05:00
parent 008a7bf77d
commit 786f5ba524
1 changed files with 1 additions and 1 deletions

View File

@ -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;