Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken authored May 29, 2024
1 parent 2d2e080 commit 60c04ea
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,16 @@ export class EditorBasedInlineChatWidget extends InlineChatWidget {

// --- layout

override get contentHeight(): number {
let result = super.contentHeight;

if (this._accessibleViewer.value) {
result += this._accessibleViewer.value.height;
}

return result;
}

protected override _doLayout(dimension: Dimension): void {

let newHeight = dimension.height;
Expand Down

0 comments on commit 60c04ea

Please sign in to comment.