Skip to content

Commit

Permalink
strict setting in application scope
Browse files Browse the repository at this point in the history
  • Loading branch information
CsCherrYY committed Aug 24, 2021
1 parent fe2b9ca commit d4b7925
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@
"gradle.showStoppedDaemons": {
"type": "boolean",
"default": false,
"scope": "window",
"scope": "application",
"description": "Show stopped daemons in the Gradle Daemons view"
}
}
Expand Down
2 changes: 1 addition & 1 deletion extension/src/util/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function getShowStoppedDaemons(): boolean {
export function setShowStoppedDaemons(value: boolean): void {
void vscode.workspace
.getConfiguration('gradle')
.update('showStoppedDaemons', value);
.update('showStoppedDaemons', value, true);
}

export type JavaDebug = {
Expand Down

0 comments on commit d4b7925

Please sign in to comment.