RenderWidget: Set Window to Top for Cursor Lock

This commit is contained in:
SirMangler 2021-06-18 12:27:36 +01:00
parent 3e1a25ead0
commit 1698386139
1 changed files with 5 additions and 0 deletions

View File

@ -254,6 +254,10 @@ void RenderWidget::SetCursorLocked(bool locked, bool follow_aspect_ratio)
if (locked)
{
#ifdef _WIN32
// This will prevent the mouse from interacting with the task bar
// while in windowed / borderless fullscreen.
SetWindowPos((HWND) winId(), HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
RECT rect;
rect.left = render_rect.left();
rect.right = render_rect.right();
@ -280,6 +284,7 @@ void RenderWidget::SetCursorLocked(bool locked, bool follow_aspect_ratio)
else
{
#ifdef _WIN32
SetWindowPos((HWND) winId(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
ClipCursor(nullptr);
#endif