From 12e8a212d4129ac7c9462ff9c6c32eb30da8da83 Mon Sep 17 00:00:00 2001 From: Martin Garstenauer Date: Fri, 27 Dec 2024 13:26:18 +0100 Subject: [PATCH] fix: Enter key does not stage/unstage all selected items (#843) --- src/Views/ChangeCollectionView.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/ChangeCollectionView.axaml.cs b/src/Views/ChangeCollectionView.axaml.cs index a47988f0..d6982dda 100644 --- a/src/Views/ChangeCollectionView.axaml.cs +++ b/src/Views/ChangeCollectionView.axaml.cs @@ -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); } }