diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-02-01 13:12:58 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-02-01 13:12:58 +1100 |
commit | 690d47995f6733eef9b28bd2ebef2c237b61b159 (patch) | |
tree | 083f6a2d5673b8403bb2b258f0307b4d5c036def /source/application | |
parent | 70c4094c58b83b61c47ec3188cdb510c87742db0 (diff) |
Update StarMainApplication_sdl.cpp
Diffstat (limited to 'source/application')
-rw-r--r-- | source/application/StarMainApplication_sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/application/StarMainApplication_sdl.cpp b/source/application/StarMainApplication_sdl.cpp index e0dfd37..c3ffbf0 100644 --- a/source/application/StarMainApplication_sdl.cpp +++ b/source/application/StarMainApplication_sdl.cpp @@ -522,7 +522,7 @@ private: } bool isFocused() const override { - return (SDL_GetWindowFlags(parent->m_sdlWindow) & (SDL_WINDOW_INPUT_FOCUS | SDL_WINDOW_MOUSE_FOCUS)) != 0; + return (SDL_GetWindowFlags(parent->m_sdlWindow) & SDL_WINDOW_INPUT_FOCUS) != 0; } void setTargetUpdateRate(float targetUpdateRate) override { |