mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-29 07:28:54 -04:00
Minor adjustments to the Fox statistics code.
This commit is contained in:
parent
2c98a4741e
commit
f9a93443ad
@ -96,7 +96,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="rate_label">
|
<widget class="QLabel" name="rate_label">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body><p><span style=" font-family:'Arial','Helvetica','sans-serif'; font-size:small; color:#222222; background-color:#ffffff;">Last 10: Average rate (QSOs/hour) for the last 10 QSOs.<br/>Last 100: Average rate (QSOs/hour) for the last 100 QSOs. <br/>Last 60m: Average rate (QSOs/hour) for the last 60 minutes.</span></p></body></html></string>
|
<string><html><head/><body><p>Last 10: Average rate (QSOs/hour) for the last 10 QSOs.<br/>Last 100: Average rate (QSOs/hour) for the last 100 QSOs. <br/>Last 60m: Average rate (QSOs/hour) for the last 60 minutes.</span></p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>N</string>
|
<string>N</string>
|
||||||
|
@ -1084,6 +1084,8 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
ui->labDXped->setStyleSheet("QLabel {background-color: red; color: white;}");
|
ui->labDXped->setStyleSheet("QLabel {background-color: red; color: white;}");
|
||||||
ui->pbBestSP->setVisible(m_mode=="FT4");
|
ui->pbBestSP->setVisible(m_mode=="FT4");
|
||||||
|
|
||||||
|
update_foxLogWindow_rate(); // update the rate on the window
|
||||||
|
|
||||||
QString jpleph = m_config.data_dir().absoluteFilePath("JPLEPH");
|
QString jpleph = m_config.data_dir().absoluteFilePath("JPLEPH");
|
||||||
jpl_setup_(const_cast<char *>(jpleph.toLocal8Bit().constData()),256);
|
jpl_setup_(const_cast<char *>(jpleph.toLocal8Bit().constData()),256);
|
||||||
|
|
||||||
@ -1145,7 +1147,7 @@ void MainWindow::on_the_minute ()
|
|||||||
} else {
|
} else {
|
||||||
tx_watchdog (false);
|
tx_watchdog (false);
|
||||||
}
|
}
|
||||||
MainWindow::update_foxLogWindow_rate(); // update the rate on the window
|
update_foxLogWindow_rate(); // update the rate on the window
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------- MainWindow destructor
|
//--------------------------------------------------- MainWindow destructor
|
||||||
@ -10073,7 +10075,7 @@ Transmit:
|
|||||||
|
|
||||||
if (m_foxLogWindow)
|
if (m_foxLogWindow)
|
||||||
{
|
{
|
||||||
MainWindow::update_foxLogWindow_rate();
|
update_foxLogWindow_rate();
|
||||||
m_foxLogWindow->queued (m_foxQSOinProgress.count ());
|
m_foxLogWindow->queued (m_foxQSOinProgress.count ());
|
||||||
}
|
}
|
||||||
updateFoxQSOsInProgressDisplay();
|
updateFoxQSOsInProgressDisplay();
|
||||||
|
Loading…
Reference in New Issue
Block a user