mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-26 13:48:38 -05:00
Don't squelch-break solo-follow if breaker is muted.
This commit is contained in:
parent
008a7bf77d
commit
786f5ba524
@ -150,7 +150,7 @@ void DemodulatorThread::run() {
|
|||||||
|
|
||||||
if (squelchEnabled) {
|
if (squelchEnabled) {
|
||||||
if (!squelched && !squelchBreak) {
|
if (!squelched && !squelchBreak) {
|
||||||
if (wxGetApp().getSoloMode()) {
|
if (wxGetApp().getSoloMode() && !muted.load()) {
|
||||||
wxGetApp().getDemodMgr().setActiveDemodulator(demodInstance, false);
|
wxGetApp().getDemodMgr().setActiveDemodulator(demodInstance, false);
|
||||||
}
|
}
|
||||||
squelchBreak = true;
|
squelchBreak = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user