mirror of
				https://github.com/Ryujinx/SDL.git
				synced 2025-11-04 14:14:49 +00:00 
			
		
		
		
	Windows: resync num/caps lock when window is gaining focus.
This commit is contained in:
		
							parent
							
								
									257b7af247
								
							
						
					
					
						commit
						fd6b435c6a
					
				| 
						 | 
				
			
			@ -415,6 +415,9 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
 | 
			
		|||
                 * FIXME: Update keyboard state
 | 
			
		||||
                 */
 | 
			
		||||
                WIN_CheckClipboardUpdate(data->videodata);
 | 
			
		||||
 | 
			
		||||
                SDL_ToggleModState(KMOD_CAPS, (GetKeyState(VK_CAPITAL) & 0x0001) != 0);
 | 
			
		||||
                SDL_ToggleModState(KMOD_NUM, (GetKeyState(VK_NUMLOCK) & 0x0001) != 0);
 | 
			
		||||
            } else {
 | 
			
		||||
                if (SDL_GetKeyboardFocus() == data->window) {
 | 
			
		||||
                    SDL_SetKeyboardFocus(NULL);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue