Skip to content

Commit

Permalink
For #24717, fix search results doubleclick
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Apr 14, 2017
1 parent f9ee4da commit f1b786f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/search/browser/searchViewlet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ export class SearchViewlet extends Viewlet {
this.currentSelectedFileMatch = selectedMatch.parent();
this.currentSelectedFileMatch.setSelectedMatch(selectedMatch);
if (!(options.payload && options.payload.preventEditorOpen)) {
this.onFocus(selectedMatch, options.editorOptions.preserveFocus, options.editorOptions.pinned, options.sideBySide);
this.onFocus(selectedMatch, options.editorOptions.preserveFocus, options.sideBySide, options.editorOptions.pinned);
}
}
}));
Expand Down

0 comments on commit f1b786f

Please sign in to comment.