mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00: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…
Add table
Add a link
Reference in a new issue