Skip to content

Commit

Permalink
Key binding updated to Ctrl+T, conflicting binding removed as obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
zeusongit committed Mar 25, 2024
1 parent 4ae4769 commit ab66225
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/DynamoCoreWpf/Views/Core/DynamoView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@
<KeyBinding Key="O"
Modifiers="Control"
Command="{Binding Path=DataContext.ShowOpenDialogAndOpenResultCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}" />
<KeyBinding Key="O"
Modifiers="Control+Shift"
<KeyBinding Key="T"
Modifiers="Control"
Command="{Binding Path=DataContext.ShowOpenTemplateDialogCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}"
CommandParameter="Template"/>
<KeyBinding Key="I"
Expand Down Expand Up @@ -182,9 +182,6 @@
<MouseBinding Gesture="Shift+LeftDoubleClick"
Command="{Binding Path=DataContext.HomeSpaceViewModel.ShowInCanvasSearchCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}"
CommandParameter="{x:Static viewModels:ShowHideFlags.Show}"/>
<KeyBinding Key="T"
Modifiers="Control"
Command="{Binding Path=DataContext.ShowNewPresetsDialogCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}" />
<KeyBinding Key="F1"
Command="{Binding Path=DataContext.ShowNodeDocumentationCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}" />
</Window.InputBindings>
Expand Down Expand Up @@ -349,7 +346,7 @@
Name="openTemplateMenuItem"
Command="{Binding ShowOpenTemplateDialogCommand}"
CommandParameter="Template"
InputGestureText="Ctrl + Shift + O">
InputGestureText="Ctrl + T">
</MenuItem>
</MenuItem>
<MenuItem Header="{x:Static p:Resources.DynamoViewFileMenuInsert}"
Expand Down

0 comments on commit ab66225

Please sign in to comment.