Skip to content

Commit

Permalink
Remove Windows check
Browse files Browse the repository at this point in the history
  • Loading branch information
rendello authored and IntelOrca committed Oct 8, 2021
1 parent 33fa31e commit 86cf0dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/openrct2-ui/UiContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,10 @@ class UiContext final : public IUiContext
#endif
case SDL_KEYDOWN:
{
#if !(defined(__MACOSX__) || defined(__WINDOWS__))
// Ignore winkey keydowns. Handles edge case where *NIX
// tiling window managers don't eat the keypresses when
// changing workspaces.
#ifndef __MACOSX__
// Ignore winkey keydowns. Handles edge case where tiling
// window managers don't eat the keypresses when changing
// workspaces.
if (SDL_GetModState() & KMOD_GUI)
{
break;
Expand Down

0 comments on commit 86cf0dc

Please sign in to comment.