mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-12 07:06:17 -05:00
Add a ToolTip. Ensure that contest log is displayed when needed.
This commit is contained in:
parent
1d2665a978
commit
b57c4aadd8
@ -1171,8 +1171,8 @@ void MainWindow::readSettings()
|
|||||||
m_audioThreadPriority = static_cast<QThread::Priority> (m_settings->value ("Audio/ThreadPriority", QThread::HighPriority).toInt () % 8);
|
m_audioThreadPriority = static_cast<QThread::Priority> (m_settings->value ("Audio/ThreadPriority", QThread::HighPriority).toInt () % 8);
|
||||||
m_settings->endGroup ();
|
m_settings->endGroup ();
|
||||||
|
|
||||||
if (displayMsgAvg) on_actionMessage_averaging_triggered();
|
|
||||||
setContestType();
|
setContestType();
|
||||||
|
if(displayMsgAvg or (m_nContest>0 and m_nContest<6)) on_actionMessage_averaging_triggered();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::setContestType()
|
void MainWindow::setContestType()
|
||||||
@ -1689,6 +1689,9 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog
|
|||||||
ui->actionEnable_AP_JT65->setVisible(false);
|
ui->actionEnable_AP_JT65->setVisible(false);
|
||||||
}
|
}
|
||||||
m_opCall=m_config.opCall();
|
m_opCall=m_config.opCall();
|
||||||
|
if(m_msgAvgWidget==NULL and m_nContest>0 and m_nContest<6) {
|
||||||
|
on_actionMessage_averaging_triggered();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
setColorHighlighting();
|
setColorHighlighting();
|
||||||
}
|
}
|
||||||
|
@ -1048,6 +1048,9 @@ QLabel[oob="true"] {
|
|||||||
</item>
|
</item>
|
||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QLabel" name="labNextCall">
|
<widget class="QLabel" name="labNextCall">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string><html><head/><body><p>Double-click on another caller to queue that call for your next QSO.</p></body></html></string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Next Call</string>
|
<string>Next Call</string>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user