Skip to content

Commit

Permalink
Fix: Disable bitbake error popup per workspace instead of globally
Browse files Browse the repository at this point in the history
The user may want to disable the bitbake error popup for a specific
workspace but he should be reminded of the error popup when he opens
another workspace.
  • Loading branch information
deribaucourt committed Nov 16, 2023
1 parent 7bb7182 commit b59745f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function activate (context: vscode.ExtensionContext): Promise<void>

taskProvider = vscode.tasks.registerTaskProvider('bitbake', bitbakeTaskProvider)

const notificationManager = new ClientNotificationManager(client, context.globalState)
const notificationManager = new ClientNotificationManager(client, context.workspaceState)
context.subscriptions.push(...notificationManager.buildHandlers())
const bitBakeProjectScannerClient = new BitBakeProjectScannerClient(client)
context.subscriptions.push(...bitBakeProjectScannerClient.buildHandlers())
Expand Down

0 comments on commit b59745f

Please sign in to comment.