mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Fix clipping height in changed items tab.
This commit is contained in:
parent
2afd6b966e
commit
dcc4354777
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ public class ChangedItemsTab(
|
|||
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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue