diff --git a/BossMod/Config/ModuleViewer.cs b/BossMod/Config/ModuleViewer.cs index c437307c3..42a125887 100644 --- a/BossMod/Config/ModuleViewer.cs +++ b/BossMod/Config/ModuleViewer.cs @@ -136,8 +136,10 @@ private void DrawFilters() return; ImGui.TableNextColumn(); + ImGui.AlignTextToFramePadding(); // Ensures text aligns with input box ImGui.Text("Search:"); ImGui.SameLine(); + ImGui.SetNextItemWidth(-1); // Makes the input box take up the rest of the row ImGui.InputTextWithHint("##search", "e.g. \"Ultimate\"", ref _searchText, 100, ImGuiInputTextFlags.CallbackCompletion); ImGui.TableNextColumn();