From 5ffb945b66ee4561ccd4fccfe5ba896fc7611155 Mon Sep 17 00:00:00 2001 From: Don-Vito Date: Sat, 13 Feb 2021 06:00:13 +0200 Subject: [PATCH] Re-enable navigation in ATS (#9140) ## PR Checklist * [x] Closes https://github.com/microsoft/terminal/issues/9130 * [x] CLA signed. * [ ] Tests added/passed * [ ] Documentation updated. * [ ] Schema updated. * [ ] I've discussed this with core contributors already. --- src/cascadia/TerminalApp/CommandPalette.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cascadia/TerminalApp/CommandPalette.cpp b/src/cascadia/TerminalApp/CommandPalette.cpp index 68581dd2f99..d306ce1ce60 100644 --- a/src/cascadia/TerminalApp/CommandPalette.cpp +++ b/src/cascadia/TerminalApp/CommandPalette.cpp @@ -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)