Skip to content

Commit

Permalink
Merge pull request #5988 from gnestor/issue-5987
Browse files Browse the repository at this point in the history
Avoid activating the non-current widget after navigating to cwd
  • Loading branch information
ian-r-rose committed Feb 15, 2019
2 parents 4226c86 + 170c375 commit 26d2b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/filebrowser-extension/src/index.ts
Expand Up @@ -301,7 +301,7 @@ function activateBrowser(
const { path } = context;
Private.navigateToPath(path, factory)
.then(() => {
docManager.findWidget(path).activate();
labShell.currentWidget.activate();
})
.catch((reason: any) => {
console.warn(
Expand Down

0 comments on commit 26d2b4a

Please sign in to comment.