Skip to content

Commit

Permalink
Insert shortcut change (DynamoDS#13995)
Browse files Browse the repository at this point in the history
- changed the shortcut combination for the Insert command
- now uses Ctrl + Shift + I instead of Ctrl + I
  • Loading branch information
dnenov authored May 16, 2023
1 parent 839834c commit 1c599af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DynamoCoreWpf/Views/Core/DynamoView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
Modifiers="Control"
Command="{Binding Path=DataContext.ShowOpenDialogAndOpenResultCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}" />
<KeyBinding Key="I"
Modifiers="Control"
Modifiers="Control+Shift"
Command="{Binding Path=DataContext.ShowInsertDialogAndInsertResultCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type controls:DynamoView}}}" />
<KeyBinding Key="H"
Modifiers="Control"
Expand Down Expand Up @@ -344,11 +344,11 @@
<MenuItem Header="{x:Static p:Resources.DynamoViewFileMenuInsert}"
Command="{Binding ShowInsertDialogAndInsertResultCommand}"
Name="insertButton"
InputGestureText="Ctrl + I">
InputGestureText="Ctrl + Shift + I">
</MenuItem>
<MenuItem Header="{x:Static p:Resources.DynamoViewFileMenuRecentFiles}"
ItemsSource="{Binding RecentFiles}">
<MenuItem.ItemContainerStyle>
<MenuItem.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Header"
Value="{Binding Converter={StaticResource FilePathDisplayConverter}}" />
Expand Down

0 comments on commit 1c599af

Please sign in to comment.