Просмотр исходного кода

Reset the keyboard when entering a modal loop on Windows

Fixes https://github.com/libsdl-org/SDL/issues/12876
Sam Lantinga 10 месяцев назад
Родитель
Сommit
da3c864d4c
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/video/windows/SDL_windowsevents.c

+ 3 - 0
src/video/windows/SDL_windowsevents.c

@@ -1823,6 +1823,9 @@ LRESULT CALLBACK WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara
             data->initial_size_rect.bottom = data->window->y + data->window->h;
 
             SetTimer(hwnd, (UINT_PTR)SDL_IterateMainCallbacks, USER_TIMER_MINIMUM, NULL);
+
+            // Reset the keyboard, as we won't get any key up events during the modal loop
+            SDL_ResetKeyboard();
         }
     } break;