Skip to content

Commit dcc4354

Browse files
committed
Fix clipping height in changed items tab.
1 parent 2afd6b9 commit dcc4354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Penumbra/UI/Tabs/ChangedItemsTab.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void DrawContent()
3636
if (!child)
3737
return;
3838

39-
var height = ImGui.GetFrameHeight() + 2 * ImGui.GetStyle().CellPadding.Y;
39+
var height = ImGui.GetFrameHeightWithSpacing() + 2 * ImGui.GetStyle().CellPadding.Y;
4040
var skips = ImGuiClip.GetNecessarySkips(height);
4141
using var list = ImRaii.Table("##changedItems", 3, ImGuiTableFlags.RowBg, -Vector2.One);
4242
if (!list)

0 commit comments

Comments
 (0)