fix(Overlay): Added spacing for Enabled/Disabled text on overlay indicators (#1589)
This commit is contained in:
parent
9c445be4f4
commit
bc0f08ce1d
@ -116,7 +116,7 @@ namespace big
|
|||||||
static void overlay_indicator(const std::string_view text, bool value)
|
static void overlay_indicator(const std::string_view text, bool value)
|
||||||
{
|
{
|
||||||
ImGui::Text(std::format("{}: ", text).data());
|
ImGui::Text(std::format("{}: ", text).data());
|
||||||
ImGui::SameLine();
|
ImGui::SameLine(180);
|
||||||
ImGui::TextColored(value ? green : red, value ? "Enabled" : "Disabled");
|
ImGui::TextColored(value ? green : red, value ? "Enabled" : "Disabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user