mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Display points if in FT4 or FT8 and ActiveStations is visible.
This commit is contained in:
parent
190dca5501
commit
4957face2f
@ -3520,8 +3520,8 @@ void MainWindow::activeWorked(QString call, QString band)
|
||||
|
||||
void MainWindow::readFromStdout() //readFromStdout
|
||||
{
|
||||
QFile f(m_appDir + "/DisplayPoints");
|
||||
bool bDisplayPoints = f.exists() or m_config.special_op_id()==SpecOp::ARRL_DIGI;
|
||||
bool bDisplayPoints = (m_mode=="FT4" or m_mode=="FT8") and
|
||||
(m_config.special_op_id()==SpecOp::ARRL_DIGI or m_ActiveStationsWidget->isVisible());
|
||||
while(proc_jt9.canReadLine()) {
|
||||
auto line_read = proc_jt9.readLine ();
|
||||
if (auto p = std::strpbrk (line_read.constData (), "\n\r")) {
|
||||
|
Loading…
Reference in New Issue
Block a user