Skip to content

Commit

Permalink
vscode: set preserveFocus to true to prevent Goals panel from taking …
Browse files Browse the repository at this point in the history
…focus each time
  • Loading branch information
Alidra committed Jul 17, 2024
1 parent 04cec54 commit 7bba74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editors/vscode/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ function sendGoalsRequest(position: Position, panel: WebviewPanel, docUri: Uri,
}
// Take focus back if the goal panel lost it.
if(!panel.active) {
panel.reveal(2, false);
panel.reveal(2, true);
}

updateTerminalText(goals.logs);
Expand Down

0 comments on commit 7bba74a

Please sign in to comment.