Simple PTT: corrected PTT button highlight when coming from REST API action

pull/648/head
f4exb 2020-09-29 01:24:29 +02:00
rodzic 79b087e93c
commit 9c2e9ccb75
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -104,9 +104,9 @@ bool SimplePTTGUI::handleMessage(const Message& message)
qDebug("SimplePTTGUI::handleMessage: SimplePTT::MsgPTT");
const SimplePTT::MsgPTT& cfg = (SimplePTT::MsgPTT&) message;
bool ptt = cfg.getTx();
ui->ptt->blockSignals(true);
blockApplySettings(true);
ui->ptt->setChecked(ptt);
ui->ptt->blockSignals(false);
blockApplySettings(false);
return true;
}