From bc0f08ce1d0d978e4491ecc65aeebd2679a73a22 Mon Sep 17 00:00:00 2001 From: Sixhei Tartari <42782503+Democles85@users.noreply.github.com> Date: Tue, 4 Jul 2023 11:08:58 +0200 Subject: [PATCH] fix(Overlay): Added spacing for Enabled/Disabled text on overlay indicators (#1589) --- src/gui/components/components.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }