1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Keep progress bar window centred after resize (#22354)

This commit is contained in:
Aaron van Geffen
2024-07-23 19:21:06 +02:00
committed by GitHub
parent 2da5ed6517
commit 4cef38456a
3 changed files with 14 additions and 5 deletions

View File

@@ -1427,6 +1427,14 @@ void WindowResizeGui(int32_t width, int32_t height)
optionsWindow->windowPos.y = (ContextGetHeight() - optionsWindow->height) / 2;
}
// Keep progress bar window centred after a resize
WindowBase* ProgressWindow = WindowFindByClass(WindowClass::ProgressWindow);
if (ProgressWindow != nullptr)
{
ProgressWindow->windowPos.x = (ContextGetWidth() - ProgressWindow->width) / 2;
ProgressWindow->windowPos.y = (ContextGetHeight() - ProgressWindow->height) / 2;
}
GfxInvalidateScreen();
}