mirror of https://github.com/encounter/SDL.git
Don't warp the mouse within a window while it's minimized
This commit is contained in:
parent
87ac373493
commit
1ec409c214
|
@ -761,6 +761,10 @@ SDL_WarpMouseInWindow(SDL_Window * window, int x, int y)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((window->flags & SDL_WINDOW_MINIMIZED) == SDL_WINDOW_MINIMIZED) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (mouse->WarpMouse) {
|
if (mouse->WarpMouse) {
|
||||||
mouse->WarpMouse(window, x, y);
|
mouse->WarpMouse(window, x, y);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue