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.

(cherry picked from commit 5ffb945)
  • Loading branch information
Don-Vito authored and DHowett committed Feb 23, 2021
1 parent d7fcc56 commit b544298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cascadia/TerminalApp/CommandPalette.cpp
Expand Up @@ -264,15 +264,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 b544298

Please sign in to comment.