Skip to content

Commit

Permalink
Hotfix: Fix tab binding
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rgb committed Jun 5, 2019
1 parent da704bd commit 50da808
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/sdl_milton.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ shortcut_handle_key(Milton* milton, PlatformState* platform, SDL_Event* event, M
}
else {
switch (k) {
case SDLK_TAB: { active_key = SDLK_TAB; } break;
case SDLK_ESCAPE: { active_key = Binding::ESC; } break;
case SDLK_F1: { active_key = Binding::F1; } break;
case SDLK_F2: { active_key = Binding::F2; } break;
Expand Down

0 comments on commit 50da808

Please sign in to comment.