Skip to content

Commit bd52319

Browse files
authored
Cherry-pick fix for #244651 to release/1.99 (#245158)
Adresses #244651
1 parent 04b99c9 commit bd52319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ class AccessibleViewAcceptInlineCompletionAction extends Action2 {
330330
return;
331331
}
332332
const model = InlineCompletionsController.get(editor)?.model.get();
333-
const state = model?.inlineCompletionState.get();
333+
const state = model?.state.get();
334334
if (!model || !state) {
335335
return;
336336
}

0 commit comments

Comments
 (0)