Skip to content

Commit 5dd48a7

Browse files
authored
Merge pull request microsoft#183608 from microsoft/aamunger/plaintextScrolling
use scroll setting variable correctly
2 parents 9473a29 + c52a87e commit 5dd48a7

File tree

1 file changed

+1
-1
lines changed
  • extensions/notebook-renderers/src

1 file changed

+1
-1
lines changed

extensions/notebook-renderers/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ function renderText(outputInfo: OutputItem, outputElement: HTMLElement, ctx: IRi
333333

334334
const text = outputInfo.text();
335335
const outputScrolling = scrollingEnabled(outputInfo, ctx.settings);
336-
const content = createOutputContent(outputInfo.id, [text], ctx.settings.lineLimit, ctx.settings.outputScrolling, false);
336+
const content = createOutputContent(outputInfo.id, [text], ctx.settings.lineLimit, outputScrolling, false);
337337
content.classList.add('output-plaintext');
338338
if (ctx.settings.outputWordWrap) {
339339
content.classList.add('word-wrap');

0 commit comments

Comments
 (0)