chore: move chocobo option

This commit is contained in:
Anna 2024-08-01 04:02:11 -04:00
parent 5b9d07e1bb
commit 3dd69827bd
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -127,6 +127,7 @@ public class PluginUi : IDisposable {
using (ImGuiHelper.DisabledUnless(this.Plugin.Config is { Alternate: true, Mode: MeterMode.Mana })) { using (ImGuiHelper.DisabledUnless(this.Plugin.Config is { Alternate: true, Mode: MeterMode.Mana })) {
anyChanged |= ImGui.Checkbox("Only alternate when in combat", ref this.Plugin.Config.OnlyAlternateInCombat); anyChanged |= ImGui.Checkbox("Only alternate when in combat", ref this.Plugin.Config.OnlyAlternateInCombat);
anyChanged |= ImGui.Checkbox("Alternate chocobo timer", ref this.Plugin.Config.AlternateChocobo);
if (ImGui.TreeNodeEx("Jobs to alternate")) { if (ImGui.TreeNodeEx("Jobs to alternate")) {
using var treePop = new OnDispose(ImGui.TreePop); using var treePop = new OnDispose(ImGui.TreePop);
@ -167,8 +168,6 @@ public class PluginUi : IDisposable {
} }
} }
} }
anyChanged |= ImGui.Checkbox("Chocobo", ref this.Plugin.Config.AlternateChocobo);
} }
ImGui.Spacing(); ImGui.Spacing();