diff --git a/Changelog b/Changelog index 8afaf017..52f72e3a 100644 --- a/Changelog +++ b/Changelog @@ -6,6 +6,7 @@ TBC - 0.41.0 - [NEW] - Added an input parameter to save debug message to file - [NEW] - Logbook - Added sorting function to logbook table columns (PR #540 @kyleboyle) - [CHANGED] - Settings: disabled band and mode name modification +- Fixed MacOS - keep floating windows visible on app unfocus (issue #530) - Fixed Contest Filter ignores the first QSO (issue #529) - Fixed It is not possible to quit Qlog with detached widgets Rot & Rig (issue #534) diff --git a/ui/MainWindow.cpp b/ui/MainWindow.cpp index d2bcd3d4..015cd74f 100644 --- a/ui/MainWindow.cpp +++ b/ui/MainWindow.cpp @@ -399,8 +399,6 @@ MainWindow::MainWindow(QWidget* parent) : setupActivitiesMenu(); -// Temporary disabled (Issue #530) -#if 0 const QList dockWidgets = findChildren(); for ( QDockWidget* dockWidget : dockWidgets ) @@ -408,7 +406,6 @@ MainWindow::MainWindow(QWidget* parent) : if ( dockWidget ) dockWidget->setAttribute(Qt::WA_MacAlwaysShowToolWindow, true); } -#endif } void MainWindow::closeEvent(QCloseEvent* event)