Browse Source

Change search shortcut to F3 and Shift+F3

pull/23/head
Siegfried Pammer 14 years ago
parent
commit
e18b0900f1
  1. 2
      src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Search/SearchCommands.cs

2
src/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Search/SearchCommands.cs

@ -22,7 +22,7 @@ namespace ICSharpCode.AvalonEdit.Search @@ -22,7 +22,7 @@ namespace ICSharpCode.AvalonEdit.Search
);
public static readonly RoutedCommand FindPrevious = new RoutedCommand(
"FindPrevious", typeof(SearchPanel),
new InputGestureCollection { new KeyGesture(Key.F3, ModifierKeys.Control) }
new InputGestureCollection { new KeyGesture(Key.F3, ModifierKeys.Shift) }
);
}

Loading…
Cancel
Save