fix merge conflict

This commit is contained in:
Vadim Lopatin 2016-03-09 09:18:52 +03:00
commit 2d1992ff47
2 changed files with 6 additions and 0 deletions
src/dlangide/ui

View File

@ -986,6 +986,8 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
_logPanel.getTabs.selectTab("search"); _logPanel.getTabs.selectTab("search");
if(searchPanel !is null) { if(searchPanel !is null) {
searchPanel.focus(); searchPanel.focus();
dstring selectedText = currentEditor.getSelectedText();
searchPanel.setSearchText(selectedText);
} }
return true; return true;
case IDEActions.FileNewWorkspace: case IDEActions.FileNewWorkspace:

View File

@ -170,6 +170,10 @@ class SearchWidget : TabWidget {
} }
return true; return true;
} }
public void setSearchText(dstring txt){
_findText.text = txt;
}
protected bool onEditorAction(const Action action) { protected bool onEditorAction(const Action action) {
if (action.id == EditorActions.InsertNewLine) { if (action.id == EditorActions.InsertNewLine) {