From 8b31936fd927fbb72777e84d97efe13925c60326 Mon Sep 17 00:00:00 2001 From: Raymond Date: Fri, 1 Oct 2021 21:57:35 -0400 Subject: [PATCH] fix scrollbar not showing --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 02f0a3247..feac3e368 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -628,7 +628,7 @@ namespace Dalamud.Interface.Internal.Windows this.DrawPluginCategorySelectors(); ImGui.TableNextColumn(); - if (ImGui.BeginChild($"ScrollingPlugins", new Vector2(useContentWidth, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground)) + if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground)) { this.DrawPluginCategoryContent(); ImGui.EndChild();