mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 06:25:37 +00:00
Merge pull request #176309 from microsoft/aamunger/scrollErrors
make error outputs scrollable with output scroll setting
This commit is contained in:
commit
a2eda2261a
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ function renderError(
|
|||
|
||||
stack.style.margin = '8px 0';
|
||||
const element = document.createElement('span');
|
||||
insertOutput(outputInfo.id, [err.stack ?? ''], ctx.settings.lineLimit, false, element, true);
|
||||
insertOutput(outputInfo.id, [err.stack ?? ''], ctx.settings.lineLimit, ctx.settings.outputScrolling, element, true);
|
||||
stack.appendChild(element);
|
||||
container.appendChild(stack);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue