From 8b88bc18e0cda996927af3e4bbb9495dc1bc5d99 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Thu, 28 Oct 2021 01:39:08 +0200 Subject: [PATCH] correct table setup --- Dalamud/Interface/Internal/Windows/PluginStatWindow.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginStatWindow.cs b/Dalamud/Interface/Internal/Windows/PluginStatWindow.cs index 48c792002..257b67857 100644 --- a/Dalamud/Interface/Internal/Windows/PluginStatWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginStatWindow.cs @@ -176,11 +176,12 @@ namespace Dalamud.Interface.Internal.Windows if (ImGui.BeginTabItem("Hooks")) { - ImGui.Columns(3); + ImGui.Columns(4); - ImGui.SetColumnWidth(0, ImGui.GetWindowContentRegionWidth() - 280); + ImGui.SetColumnWidth(0, ImGui.GetWindowContentRegionWidth() - 330); ImGui.SetColumnWidth(1, 180f); ImGui.SetColumnWidth(2, 100f); + ImGui.SetColumnWidth(3, 100f); ImGui.Text("Detour Method"); ImGui.SameLine();