Skip to content

Commit

Permalink
Allow tab key to be used for shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsIrl committed Jul 20, 2019
1 parent 4379395 commit cafb888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scene/main/viewport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2291,12 +2291,12 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
if (from && p_event->is_pressed()) {
Control *next = NULL;

if (p_event->is_action_pressed("ui_focus_next")) {
if (!mods && p_event->is_action_pressed("ui_focus_next")) {

next = from->find_next_valid_focus();
}

if (p_event->is_action_pressed("ui_focus_prev")) {
if (!mods && p_event->is_action_pressed("ui_focus_prev")) {

next = from->find_prev_valid_focus();
}
Expand Down

0 comments on commit cafb888

Please sign in to comment.