diff options
| author | Philip Dubé <serprex@users.noreply.github.com> | 2025-01-03 01:22:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-02 18:22:15 -0700 |
| commit | fceb083dc064c407a7c12fd6ebacdd4b5f95540e (patch) | |
| tree | 809063d6fc906528dd39c94b8c3eced3f294b636 | |
| parent | 0544c494e656c14747f31f66159b8671cf938fc1 (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.cpp | 1 |
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"); |
