fix: remove horizontal scrollbar for plugins child

This commit is contained in:
Aireil 2021-10-17 21:32:26 +02:00
parent 71bf1e549b
commit 60e006211c

View file

@ -635,7 +635,7 @@ namespace Dalamud.Interface.Internal.Windows
this.DrawPluginCategorySelectors(); this.DrawPluginCategorySelectors();
ImGui.TableNextColumn(); ImGui.TableNextColumn();
if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.HorizontalScrollbar | ImGuiWindowFlags.NoBackground)) if (ImGui.BeginChild("ScrollingPlugins", new Vector2(-1, 0), false, ImGuiWindowFlags.NoBackground))
{ {
this.DrawPluginCategoryContent(); this.DrawPluginCategoryContent();
} }