fix: Enter key does not stage/unstage all selected items

This commit is contained in:
Martin Garstenauer 2024-12-27 12:56:48 +01:00
parent 5081d2fba2
commit 315f297835

View file

@ -42,7 +42,7 @@ namespace SourceGit.Views
} }
} }
if (!e.Handled && e.Key != Key.Space) if (!e.Handled && e.Key != Key.Space && e.Key != Key.Enter)
base.OnKeyDown(e); base.OnKeyDown(e);
} }
} }