Hi All,

I noticed that some tooltips in main windows, central lower zone are not 
correct.

This is not blocking, is only a incorrect text.

<widget class="QCheckBox" name="cbEME"> is used for EME delay and also 
for "Auto sequence"

So text can be changed adding a line of code after QCheckBox setText

       ui->cbEME->setText("Auto Seq");
+     ui->cbEME->setToolTip (tr ("Automatic QSO Sequence"));
       if(m_TRperiodFast>0) m_TRperiod=m_TRperiodFast;
     } else {
       ui->cbEME->setText("EME delay");
+       ui->cbEME->setToolTip (tr ("Check to add 2.5 s to expected 
propagation delay."));

and reversing:

       ui->cbEME->setText("Auto Seq");
+     ui->cbEME->setToolTip (tr ("Automatic QSO Sequence"));
       if(m_TRperiodFast>0) m_TRperiod=m_TRperiodFast;
     } else {
       ui->cbEME->setText("EME delay");
+       ui->cbEME->setToolTip (tr ("Check to add 2.5 s to expected 
propagation delay."));

The <widget class="QCheckBox" name="cbShMsgs"> tell
<string>Check to generate JT4 or JT65 shorthand messages.</string>
but is valid also for JTMSK and MSK144
It is correct ?

Thank in advance

-- 
73
Sandro
IW3RAB

------------------------------------------------------------------------------
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity 
planning reports. http://sdm.link/zohodev2dev
_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to