Skip to content

Commit ca76fd9

Browse files
committed
1 parent b76d3f0 commit ca76fd9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/editor/browser/controller/textAreaHandler.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,9 +358,9 @@ export class TextAreaHandler extends ViewPart {
358358
this._accessibilitySupport = options.get(EditorOption.accessibilitySupport);
359359
const accessibilityPageSize = options.get(EditorOption.accessibilityPageSize);
360360
if (this._accessibilitySupport === AccessibilitySupport.Enabled && accessibilityPageSize === EditorOptions.accessibilityPageSize.defaultValue) {
361-
// If a screen reader is attached and the default value is not set we shuold automatically increase the page size to 160 for a better experience
362-
// If we put more than 160 lines the nvda can not handle this https://github.com/microsoft/vscode/issues/89717
363-
this._accessibilityPageSize = 160;
361+
// If a screen reader is attached and the default value is not set we shuold automatically increase the page size to 100 for a better experience
362+
// If we put more than 100 lines the nvda can not handle this https://github.com/microsoft/vscode/issues/89717
363+
this._accessibilityPageSize = 100;
364364
} else {
365365
this._accessibilityPageSize = accessibilityPageSize;
366366
}

0 commit comments

Comments
 (0)