From 1802e500f497f517d6fb053fdd398b0fbddf3bba Mon Sep 17 00:00:00 2001 From: RisaDev <151885272+RisaDev@users.noreply.github.com> Date: Sat, 26 Oct 2024 23:09:32 +0300 Subject: [PATCH] Fix help tooltip for enabled checkbox in profiles --- .../UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs b/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs index fb527f6..8264412 100644 --- a/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs +++ b/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs @@ -181,7 +181,7 @@ public class ProfilePanel if (ImGui.Checkbox("##Enabled", ref enabled)) _manager.SetEnabled(_selector.Selected!, enabled); ImGuiUtil.LabeledHelpMarker("Enabled", - "Whether the templates in this profile should be applied at all. Only one profile can be enabled for a character at the same time."); + "Whether the templates in this profile should be applied at all."); } } }