Skip to content

Commit 86a385d

Browse files
committed
ux: better tab navigation
Signed-off-by: leo <longshuang@msn.cn>
1 parent b001eb8 commit 86a385d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Views/LauncherPagesCommandPalette.axaml.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ protected override void OnKeyDown(KeyEventArgs e)
8080
RepoListBox.Focus(NavigationMethod.Directional);
8181
vm.SelectedRepo = vm.VisibleRepos[0];
8282
}
83+
else if (e.Key == Key.Tab)
84+
{
85+
FilterTextBox.Focus(NavigationMethod.Directional);
86+
}
8387

8488
e.Handled = true;
8589
return;

0 commit comments

Comments
 (0)