Browse Source

SearchPanel should insert selected text into the SearchPanel when pressing Ctrl+F (suggested by ThaiGIS)

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

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

@ -75,6 +75,7 @@ namespace ICSharpCode.AvalonEdit.Search
panel = new SearchPanel(); panel = new SearchPanel();
panel.Attach(TextArea); panel.Attach(TextArea);
} }
panel.SearchPattern = TextArea.Selection.GetText();
Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, (Action)delegate { panel.Reactivate(); }); Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Input, (Action)delegate { panel.Reactivate(); });
} }

Loading…
Cancel
Save