mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixed warnings on MacOS: replaced QApplication::setActiveWindow(this); with QWidget::activateWindow
This commit is contained in:
parent
f40366fd7f
commit
e972a687cc
@ -1010,7 +1010,7 @@ void CFloatingDockContainer::moveFloating()
|
|||||||
// the main window as the active window for some reason. This fixes
|
// the main window as the active window for some reason. This fixes
|
||||||
// that by resetting the active window to the floating widget after
|
// that by resetting the active window to the floating widget after
|
||||||
// updating the overlays.
|
// updating the overlays.
|
||||||
QApplication::setActiveWindow(this);
|
activateWindow();
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -1248,7 +1248,7 @@ void CFloatingDockContainer::moveEvent(QMoveEvent *event)
|
|||||||
// the main window as the active window for some reason. This fixes
|
// the main window as the active window for some reason. This fixes
|
||||||
// that by resetting the active window to the floating widget after
|
// that by resetting the active window to the floating widget after
|
||||||
// updating the overlays.
|
// updating the overlays.
|
||||||
QApplication::setActiveWindow(this);
|
activateWindow();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user