From 409ce984da63c1a1b8c440ff28d236841dc17d8e Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 10 Aug 2021 18:55:35 +0200 Subject: [PATCH] fix: put redesigned CollapsingHeader back --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index edd4e1791..a1c2954e5 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -616,7 +616,7 @@ namespace Dalamud.Interface.Internal.Windows ImGui.PushID($"available{index}{manifest.InternalName}"); - if (ImGui.CollapsingHeader($"{label}###Header")) + if (this.DrawPluginCollapsingHeader(label, manifest, false, false, index)) { ImGuiHelpers.ScaledDummy(5); @@ -788,7 +788,7 @@ namespace Dalamud.Interface.Internal.Windows ImGui.PushID($"installed{index}{plugin.Manifest.InternalName}"); - if (ImGui.CollapsingHeader($"{label}###Header")) + if (this.DrawPluginCollapsingHeader(label, plugin.Manifest, trouble, availablePluginUpdate != default, index)) { var manifest = plugin.Manifest;