mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2025-01-11 23:57:21 -08:00
fix: Enter key does not stage/unstage all selected items (#843)
This commit is contained in:
parent
5081d2fba2
commit
12e8a212d4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue