Skip to content

Commit 12e8a21

Browse files
authored
fix: Enter key does not stage/unstage all selected items (#843)
1 parent 5081d2f commit 12e8a21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Views/ChangeCollectionView.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected override void OnKeyDown(KeyEventArgs e)
4242
}
4343
}
4444

45-
if (!e.Handled && e.Key != Key.Space)
45+
if (!e.Handled && e.Key != Key.Space && e.Key != Key.Enter)
4646
base.OnKeyDown(e);
4747
}
4848
}

0 commit comments

Comments
 (0)