mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: copy multiple commits info not working anymore
This commit is contained in:
parent
9f9cea34f8
commit
b2bbbb191c
1 changed files with 1 additions and 1 deletions
|
@ -680,7 +680,7 @@ namespace SourceGit.Views
|
|||
|
||||
private void OnCommitListKeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (sender is ListBox { SelectedItems: { Count : 1 } selected } &&
|
||||
if (sender is ListBox { SelectedItems: { Count : > 0 } selected } &&
|
||||
e.Key == Key.C &&
|
||||
e.KeyModifiers.HasFlag(KeyModifiers.Control))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue