mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-26 06:08:42 -05:00
Fix minor cosmetic issue with tooltip on Tx pwr slider.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8602 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d0db3f74d6
commit
396aab7274
@ -6291,9 +6291,9 @@ void MainWindow::on_outAttenuation_valueChanged (int a)
|
||||
QString tt_str;
|
||||
qreal dBAttn {a / 10.}; // slider interpreted as dB / 100
|
||||
if (m_tune && m_config.pwrBandTuneMemory()) {
|
||||
tt_str = tr ("Tune digital gain");
|
||||
tt_str = tr ("Tune digital gain ");
|
||||
} else {
|
||||
tt_str = tr ("Transmit digital gain");
|
||||
tt_str = tr ("Transmit digital gain ");
|
||||
}
|
||||
tt_str += (a ? QString::number (-dBAttn, 'f', 1) : "0") + "dB";
|
||||
if (!m_block_pwr_tooltip) {
|
||||
|
Loading…
Reference in New Issue
Block a user