From 98326026329e5cc6952917bb7dfbad5e3c7fe686 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 13 Jan 2018 02:38:28 +0000 Subject: [PATCH] Ensure Log QSO dialog has a taskbar icon as it is not modal git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8406 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 378d3d787..b575a0fcb 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -204,7 +204,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}},