From 521f7d60d400fcf139513cc574e6f699298428c3 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 13 Jan 2018 02:40:31 +0000 Subject: [PATCH] Ensure Log QSO dialog has a taskbar icon as it is not modal\n\nMerged from trunk git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@8407 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 8cbe45367..7fa2eac0c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -202,7 +202,8 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, m_wideGraph (new WideGraph(m_settings)), m_echoGraph (new EchoGraph(m_settings)), m_fastGraph (new FastGraph(m_settings)), - m_logDlg (new LogQSO (program_title (), m_settings, &m_config, this)), + // no parent so that it has a taskbar icon + m_logDlg (new LogQSO (program_title (), m_settings, &m_config, nullptr)), m_lastDialFreq {0}, m_dialFreqRxWSPR {0}, m_detector {new Detector {RX_SAMPLE_RATE, NTMAX, downSampleFactor}},