code_style: simplify the way detacting system preferred command key

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2024-11-06 10:36:10 +08:00
parent d50b2c0298
commit c72506d939
No known key found for this signature in database
3 changed files with 3 additions and 6 deletions

View file

@ -125,7 +125,7 @@ namespace SourceGit.Views
DescriptionEditor.CaretIndex = 0;
e.Handled = true;
}
else if (e.Key == Key.V && ((OperatingSystem.IsMacOS() && e.KeyModifiers == KeyModifiers.Meta) || (!OperatingSystem.IsMacOS() && e.KeyModifiers == KeyModifiers.Control)))
else if (e.Key == Key.V && e.KeyModifiers == (OperatingSystem.IsMacOS() ? KeyModifiers.Meta : KeyModifiers.Control))
{
e.Handled = true;