From 9db2db234040c7e77d399a8dae9586a413a0ab58 Mon Sep 17 00:00:00 2001 From: bicarus <202771338+bicarus-dev@users.noreply.github.com> Date: Tue, 24 Mar 2026 22:46:38 -0700 Subject: [PATCH] presets: clear out applied status when switching profiles (#591) ## Link to GitHub Issue or related Pull Request, if one exists #581 ## Description of change Ensure "applied" status is not persisted through. --- src/spice2x/overlay/windows/config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spice2x/overlay/windows/config.cpp b/src/spice2x/overlay/windows/config.cpp index 006abda..e80d9a1 100644 --- a/src/spice2x/overlay/windows/config.cpp +++ b/src/spice2x/overlay/windows/config.cpp @@ -5367,6 +5367,7 @@ namespace overlay::windows { templates_selected = -1; all_cleared = false; template_target_selection.clear(); + std::fill(this->template_is_applied.begin(), this->template_is_applied.end(), false); ImGui::CloseCurrentPopup(); }