From e972a687cc6de3ad7d11f1b0b158175a9bc9a509 Mon Sep 17 00:00:00 2001 From: Uwe Kindler Date: Fri, 23 Jun 2023 10:28:55 +0200 Subject: [PATCH] Fixed warnings on MacOS: replaced QApplication::setActiveWindow(this); with QWidget::activateWindow --- src/FloatingDockContainer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FloatingDockContainer.cpp b/src/FloatingDockContainer.cpp index 927910d..d6d9c02 100644 --- a/src/FloatingDockContainer.cpp +++ b/src/FloatingDockContainer.cpp @@ -1010,7 +1010,7 @@ void CFloatingDockContainer::moveFloating() // the main window as the active window for some reason. This fixes // that by resetting the active window to the floating widget after // updating the overlays. - QApplication::setActiveWindow(this); + activateWindow(); #endif break; default: @@ -1248,7 +1248,7 @@ void CFloatingDockContainer::moveEvent(QMoveEvent *event) // the main window as the active window for some reason. This fixes // that by resetting the active window to the floating widget after // updating the overlays. - QApplication::setActiveWindow(this); + activateWindow(); break; default: break;