Skip to content

Commit

Permalink
fix focus on working files going into tree
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Feb 5, 2016
1 parent b7d7da0 commit ef68f23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/files/browser/fileActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2256,7 +2256,7 @@ export class FocusWorkingFiles extends Action {
public run(): Promise {
return this.viewletService.openViewlet(Files.VIEWLET_ID, true).then((viewlet: ExplorerViewlet) => {
viewlet.getWorkingFilesView().expand();
viewlet.getWorkingFilesView().focus();
viewlet.getWorkingFilesView().getViewer().DOMFocus();
});
}
}
Expand Down

0 comments on commit ef68f23

Please sign in to comment.