From e0583078bc40467bf3079b9c5fd875647c9483aa Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Thu, 30 Jul 2020 13:20:30 -0400 Subject: [PATCH] fix: make message for enable checkbox clearer --- HudSwap/PluginUI.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/HudSwap/PluginUI.cs b/HudSwap/PluginUI.cs index 7b047b4..34eaef4 100644 --- a/HudSwap/PluginUI.cs +++ b/HudSwap/PluginUI.cs @@ -105,13 +105,12 @@ namespace HudSwap { } if (ImGui.BeginTabItem("Swaps")) { - ImGui.Text("Disable swaps when editing your HUD."); - bool enabled = this.plugin.config.SwapsEnabled; - if (ImGui.Checkbox("Enabled", ref enabled)) { + if (ImGui.Checkbox("Enable swaps", ref enabled)) { this.plugin.config.SwapsEnabled = enabled; this.plugin.config.Save(); } + ImGui.Text("Note: Disable swaps when editing your HUD."); ImGui.Separator();