Windows QPA: Fix restoring from fullscreen in High DPI setups
The logic for checking whether the saved geometry (native pixels) is still within a screen compared them against logical coordinates. Work with the platform screen geometry instead. Fixes: QTBUG-83448 Change-Id: Ib68f967d1a33a490f88a7bec6dcc788788a10389 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
This commit is contained in:
parent
5e3b32b608
commit
c92fedd761
@ -2287,8 +2287,10 @@ void QWindowsWindow::setWindowState_sys(Qt::WindowStates newState)
|
||||
if (!screen)
|
||||
screen = QGuiApplication::primaryScreen();
|
||||
// That area of the virtual desktop might not be covered by a screen anymore.
|
||||
if (!screen->geometry().intersects(m_savedFrameGeometry))
|
||||
m_savedFrameGeometry.moveTo(screen->geometry().topLeft());
|
||||
if (const auto platformScreen = screen->handle()) {
|
||||
if (!platformScreen->geometry().intersects(m_savedFrameGeometry))
|
||||
m_savedFrameGeometry.moveTo(platformScreen->geometry().topLeft());
|
||||
}
|
||||
|
||||
if (newState & Qt::WindowMinimized) {
|
||||
setMinimizedGeometry(m_data.hwnd, m_savedFrameGeometry);
|
||||
|
Loading…
Reference in New Issue
Block a user