We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db912c commit b229eb5Copy full SHA for b229eb5
src/vs/editor/browser/viewParts/lines/viewLine.ts
@@ -443,7 +443,7 @@ class FastRenderedViewLine implements IRenderedViewLine {
443
}
444
445
public getWidthIsFast(): boolean {
446
- return (this.input.lineContent.length < Constants.MaxMonospaceDistance);
+ return (this.input.lineContent.length < Constants.MaxMonospaceDistance) || this._cachedWidth !== -1;
447
448
449
public monospaceAssumptionsAreValid(): boolean {
0 commit comments