File tree Expand file tree Collapse file tree
src/vs/editor/browser/controller Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments