Skip to content

Commit be0aca7

Browse files
committed
Merge branch 'master' of github.com:microsoft/vscode
2 parents 9749840 + 5eeab37 commit be0aca7

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

extensions/html-language-features/server/src/test/selectionRanges.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ suite('HTML SelectionRange', () => {
5656
[34, 'none'],
5757
[25, 'display: none'],
5858
[24, ' display: none; '],
59+
[23, '{ display: none; }'],
5960
[19, 'foo { display: none; }'],
6061
[19, 'foo { display: none; } '],
6162
[12, '<style>foo { display: none; } </style>'],

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,9 @@ export class TextAreaHandler extends ViewPart {
357357
this._accessibilitySupport = options.get(EditorOption.accessibilitySupport);
358358
const accessibilityPageSize = options.get(EditorOption.accessibilityPageSize);
359359
if (this._accessibilitySupport === AccessibilitySupport.Enabled && accessibilityPageSize === EditorOptions.accessibilityPageSize.defaultValue) {
360-
// If a screen reader is attached and the default value is not set we shuold automatically increase the page size to 1000 for a better experience
361-
this._accessibilityPageSize = 1000;
360+
// 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
361+
// If we put more than 160 lines the nvda can not handle this https://github.com/microsoft/vscode/issues/89717
362+
this._accessibilityPageSize = 160;
362363
} else {
363364
this._accessibilityPageSize = accessibilityPageSize;
364365
}

src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ class Widget {
334334

335335
if (MIN_LIMIT < 0) {
336336
// And we need to make sure we haven't expanded them before the page
337-
const delta3 = MIN_LIMIT;
337+
const delta3 = -MIN_LIMIT;
338338
MIN_LIMIT += delta3;
339339
MAX_LIMIT += delta3;
340340
}

src/vs/workbench/contrib/extensions/browser/extensions.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ registerAction2(class extends Action2 {
396396
constructor() {
397397
super({
398398
id: 'workbench.extensions.action.configure',
399-
title: { value: localize('workbench.extensions.action.configure', "Configure..."), original: 'Configure...' },
399+
title: { value: localize('workbench.extensions.action.configure', "Extension Settings"), original: 'Extension Settings' },
400400
menu: {
401401
id: MenuId.ExtensionContext,
402402
group: '2_configure',

src/vs/workbench/services/bulkEdit/browser/conflicts.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ export class ConflictDetector {
113113

114114
list(): URI[] {
115115
const result: URI[] = this._conflicts.keys();
116-
this._changes.forEach((_value, key) => {
117-
if (!this._conflicts.has(key)) {
118-
result.push(key);
119-
}
120-
});
116+
// this._changes.forEach((_value, key) => {
117+
// if (!this._conflicts.has(key)) {
118+
// result.push(key);
119+
// }
120+
// });
121121
return result;
122122
}
123123
}

0 commit comments

Comments
 (0)