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 Sep 23, 2024
1 parent c51ba17 commit 5148f2b
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 5148f2b

Please sign in to comment.