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.
2 parents 34e23ed + e2207e5 commit e567381Copy full SHA for e567381
src/vs/editor/browser/gpu/viewGpuContext.ts
@@ -163,7 +163,6 @@ export class ViewGpuContext extends Disposable {
163
if (
164
data.containsRTL ||
165
data.maxColumn > GpuRenderLimits.maxGpuCols ||
166
- data.continuesWithWrappedLine ||
167
lineNumber >= GpuRenderLimits.maxGpuLines
168
) {
169
return false;
@@ -212,9 +211,6 @@ export class ViewGpuContext extends Disposable {
212
211
if (data.maxColumn > GpuRenderLimits.maxGpuCols) {
213
reasons.push('maxColumn > maxGpuCols');
214
}
215
- if (data.continuesWithWrappedLine) {
216
- reasons.push('continuesWithWrappedLine');
217
- }
218
if (data.inlineDecorations.length > 0) {
219
let supported = true;
220
const problemTypes: InlineDecorationType[] = [];
0 commit comments