EndChild outside Begin

This commit is contained in:
Raymond 2021-10-03 10:04:07 -04:00
parent 8b31936fd9
commit e7f29cb431

View file

@ -195,7 +195,6 @@ namespace Dalamud.Interface.Internal.Windows
public override void Draw() public override void Draw()
{ {
this.DrawHeader(); this.DrawHeader();
// this.DrawPluginTabBar();
this.DrawPluginCategories(); this.DrawPluginCategories();
this.DrawFooter(); this.DrawFooter();
this.DrawErrorModal(); this.DrawErrorModal();
@ -631,9 +630,9 @@ namespace Dalamud.Interface.Internal.Windows
if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground)) if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground))
{ {
this.DrawPluginCategoryContent(); this.DrawPluginCategoryContent();
ImGui.EndChild();
} }
ImGui.EndChild();
ImGui.EndTable(); ImGui.EndTable();
} }