From e7f29cb43147b9bb262a23fb5ae7001953d4dca2 Mon Sep 17 00:00:00 2001 From: Raymond Date: Sun, 3 Oct 2021 10:04:07 -0400 Subject: [PATCH] EndChild outside Begin --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index feac3e368..0aaa44dd0 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -195,7 +195,6 @@ namespace Dalamud.Interface.Internal.Windows public override void Draw() { this.DrawHeader(); - // this.DrawPluginTabBar(); this.DrawPluginCategories(); this.DrawFooter(); this.DrawErrorModal(); @@ -631,9 +630,9 @@ namespace Dalamud.Interface.Internal.Windows if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground)) { this.DrawPluginCategoryContent(); - ImGui.EndChild(); } + ImGui.EndChild(); ImGui.EndTable(); }