mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-03 05:38:01 -04:00
Suppress "Transmit digital gain" overlay unless PWR attenuator is being adjusted.
This commit is contained in:
parent
35d758647d
commit
bc8ee62900
@ -7999,7 +7999,7 @@ void MainWindow::on_outAttenuation_valueChanged (int a)
|
|||||||
tt_str = tr ("Transmit digital gain ");
|
tt_str = tr ("Transmit digital gain ");
|
||||||
}
|
}
|
||||||
tt_str += (a ? QString::number (-dBAttn, 'f', 1) : "0") + "dB";
|
tt_str += (a ? QString::number (-dBAttn, 'f', 1) : "0") + "dB";
|
||||||
if (!m_block_pwr_tooltip) {
|
if (ui->outAttenuation->hasFocus() && !m_block_pwr_tooltip) {
|
||||||
QToolTip::showText (QCursor::pos (), tt_str, ui->outAttenuation);
|
QToolTip::showText (QCursor::pos (), tt_str, ui->outAttenuation);
|
||||||
}
|
}
|
||||||
QString curBand = ui->bandComboBox->currentText();
|
QString curBand = ui->bandComboBox->currentText();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user