group 和 line 优化

This commit is contained in:
kwai
2023-02-10 18:49:02 +08:00
parent 18b6bd7e71
commit cf1bfc7482
7 changed files with 65 additions and 39 deletions

View File

@@ -86,7 +86,7 @@ namespace AIStudio.Wpf.DiagramDesigner
public Func<KeyEventArgs, bool> Group
{
get; set;
} = e => e.KeyboardDevice.Modifiers == (ModifierKeys.Control | ModifierKeys.Shift) && e.Key == Key.G;
} = e => e.KeyboardDevice.Modifiers == ModifierKeys.Control && e.Key == Key.G;
}
}