Skip to content

Commit 60c04ea

Browse files
authored
1 parent 2d2e080 commit 60c04ea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,16 @@ export class EditorBasedInlineChatWidget extends InlineChatWidget {
613613

614614
// --- layout
615615

616+
override get contentHeight(): number {
617+
let result = super.contentHeight;
618+
619+
if (this._accessibleViewer.value) {
620+
result += this._accessibleViewer.value.height;
621+
}
622+
623+
return result;
624+
}
625+
616626
protected override _doLayout(dimension: Dimension): void {
617627

618628
let newHeight = dimension.height;

0 commit comments

Comments
 (0)