summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Dubé <serprex@users.noreply.github.com>2025-01-03 01:22:15 +0000
committerGitHub <noreply@github.com>2025-01-02 18:22:15 -0700
commitfceb083dc064c407a7c12fd6ebacdd4b5f95540e (patch)
tree809063d6fc906528dd39c94b8c3eced3f294b636
parent0544c494e656c14747f31f66159b8671cf938fc1 (diff)
check tracker: fix Clear (#4791)
when pressing Clear the input is cleared but list was not updated
-rw-r--r--soh/soh/Enhancements/randomizer/randomizer_check_tracker.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/soh/soh/Enhancements/randomizer/randomizer_check_tracker.cpp b/soh/soh/Enhancements/randomizer/randomizer_check_tracker.cpp
index 86b5c7b81..50f36a84c 100644
--- a/soh/soh/Enhancements/randomizer/randomizer_check_tracker.cpp
+++ b/soh/soh/Enhancements/randomizer/randomizer_check_tracker.cpp
@@ -909,6 +909,7 @@ void CheckTrackerWindow::DrawElement() {
ImGui::SameLine();
if (ImGui::Button("Clear")) {
checkSearch.Clear();
+ UpdateFilters();
doAreaScroll = true;
}
UIWidgets::Tooltip("Clear the search field");