diff --git a/Tweaks/UiAdjustment/TargetCastbarCountdown.cs b/Tweaks/UiAdjustment/TargetCastbarCountdown.cs index d5e2b344..2f8c16dc 100644 --- a/Tweaks/UiAdjustment/TargetCastbarCountdown.cs +++ b/Tweaks/UiAdjustment/TargetCastbarCountdown.cs @@ -79,6 +79,7 @@ private bool DrawCombo(ref NodePosition setting, string label) { foreach (var direction in Enum.GetValues()) { if (ImGui.Selectable(direction.ToString(), setting == direction)) { setting = direction; + ImGui.EndCombo(); return true; } } @@ -192,4 +193,4 @@ private void TryFreeTextNode(AtkUnitBase* addon, uint nodeId) { UiHelper.UnlinkAndFreeTextNode(textNode, addon); } } -} \ No newline at end of file +}