Skip to content

Commit

Permalink
Fix clipping height in changed items tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Jan 22, 2025
1 parent 2afd6b9 commit dcc4354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Penumbra/UI/Tabs/ChangedItemsTab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void DrawContent()
if (!child)
return;

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

0 comments on commit dcc4354

Please sign in to comment.