Skip to content

Commit

Permalink
[Target Castbar Countdown] Quick fix EndCombo missing (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireil authored Nov 20, 2023
1 parent 27ac8ad commit 37c7550
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tweaks/UiAdjustment/TargetCastbarCountdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ private bool DrawCombo(ref NodePosition setting, string label) {
foreach (var direction in Enum.GetValues<NodePosition>()) {
if (ImGui.Selectable(direction.ToString(), setting == direction)) {
setting = direction;
ImGui.EndCombo();
return true;
}
}
Expand Down Expand Up @@ -192,4 +193,4 @@ private void TryFreeTextNode(AtkUnitBase* addon, uint nodeId) {
UiHelper.UnlinkAndFreeTextNode(textNode, addon);
}
}
}
}

0 comments on commit 37c7550

Please sign in to comment.