Prevent SuperHounds from being able to edit Tx3 manually.

This commit is contained in:
Uwe Risse 2024-09-21 14:43:17 +02:00
parent 6723004254
commit 0f3b451c87

View File

@ -6926,6 +6926,10 @@ void MainWindow::on_tx2_editingFinished() //tx2 edited
void MainWindow::on_tx3_editingFinished() //tx3 edited
{
if (SpecOp::HOUND==m_specOp && m_config.superFox() && !m_bDoubleClicked) {
clearDX();
return;
}
QString t=ui->tx3->text();
msgtype(t, ui->tx3);
}