Skip to content

Commit

Permalink
Re-enable navigation in ATS (#9140)
Browse files Browse the repository at this point in the history
## PR Checklist
* [x] Closes #9130
* [x] CLA signed. 
* [ ] Tests added/passed
* [ ] Documentation updated. 
* [ ] Schema updated.
* [ ] I've discussed this with core contributors already.
  • Loading branch information
Don-Vito committed Feb 13, 2021
1 parent 604eaf9 commit 5ffb945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cascadia/TerminalApp/CommandPalette.cpp
Expand Up @@ -261,15 +261,15 @@ namespace winrt::TerminalApp::implementation
{
SelectNextItem(false);
e.Handled(true);
return;
}
else if (action.Action() == ShortcutAction::NextTab)
{
SelectNextItem(true);
e.Handled(true);
return;
}
}

return;
}

if (key == VirtualKey::Home && ctrlDown)
Expand Down

0 comments on commit 5ffb945

Please sign in to comment.