diff --git a/src/gui/components/components.hpp b/src/gui/components/components.hpp index 46b7bc90..af11d9a1 100644 --- a/src/gui/components/components.hpp +++ b/src/gui/components/components.hpp @@ -116,7 +116,7 @@ namespace big static void overlay_indicator(const std::string_view text, bool value) { ImGui::Text(std::format("{}: ", text).data()); - ImGui::SameLine(); + ImGui::SameLine(180); ImGui::TextColored(value ? green : red, value ? "Enabled" : "Disabled"); }