Skip to content

Commit

Permalink
fixes #107670
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn authored and meganrogge committed Oct 1, 2020
1 parent 6f3a739 commit bf34f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/debugHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export class DebugHoverWidget implements IContentWidget {
}

private layoutTreeAndContainer(initialLayout: boolean): void {
const scrollBarHeight = 8;
const scrollBarHeight = 10;
const treeHeight = Math.min(this.editor.getLayoutInfo().height * 0.7, this.tree.contentHeight + scrollBarHeight);
this.treeContainer.style.height = `${treeHeight}px`;
this.tree.layout(treeHeight, initialLayout ? 400 : undefined);
Expand Down

0 comments on commit bf34f14

Please sign in to comment.