mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-11 03:55:31 +00:00
Fix bug 3436 - SDL_RaiseWindow not working on windows
This commit is contained in:
parent
4e6f219941
commit
f0539aa25e
|
@ -478,7 +478,8 @@ WIN_HideWindow(_THIS, SDL_Window * window)
|
||||||
void
|
void
|
||||||
WIN_RaiseWindow(_THIS, SDL_Window * window)
|
WIN_RaiseWindow(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
WIN_SetWindowPositionInternal(_this, window, SWP_NOCOPYBITS | SWP_NOMOVE | SWP_NOSIZE);
|
HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
|
||||||
|
SetForegroundWindow(hwnd);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue