File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export class ReviewZoneWidget extends ZoneWidget implements ICommentThreadWidget
129
129
@IContextKeyService contextKeyService : IContextKeyService ,
130
130
@IConfigurationService private readonly configurationService : IConfigurationService
131
131
) {
132
- super ( editor , { keepEditorSelection : true } ) ;
132
+ super ( editor , { keepEditorSelection : true , isAccessible : true } ) ;
133
133
this . _contextKeyService = contextKeyService . createScoped ( this . domNode ) ;
134
134
135
135
this . _scopedInstantiationService = instantiationService . createChild ( new ServiceCollection (
Original file line number Diff line number Diff line change @@ -104,7 +104,8 @@ export class SimpleCommentEditor extends CodeEditorWidget {
104
104
enabled : false
105
105
} ,
106
106
autoClosingBrackets : configurationService . getValue ( 'editor.autoClosingBrackets' ) ,
107
- quickSuggestions : false
107
+ quickSuggestions : false ,
108
+ accessibilitySupport : configurationService . getValue < 'auto' | 'off' | 'on' > ( 'editor.accessibilitySupport' ) ,
108
109
} ;
109
110
}
110
111
}
You can’t perform that action at this time.
0 commit comments