From 8b0aab15b5d279b30daf1eb974e8fe09ec8289f6 Mon Sep 17 00:00:00 2001 From: Ashvin Jangid <142579833+ashvwinn@users.noreply.github.com> Date: Fri, 12 Jun 2026 17:20:10 +0530 Subject: [PATCH] gh-14145: fix boosts size and case overrides not working on first time press (gh-14147) --- src/zen/boosts/ZenBoostsEditor.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index b74964fca..b120ef25e 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -630,6 +630,7 @@ ${cssSelector} { this.currentBoostData.textCaseOverride = "uppercase"; } + this.currentBoostData.changeWasMade = true; this.updateCaseButtonVisuals(); this.updateCurrentBoost(); } @@ -651,6 +652,7 @@ ${cssSelector} { await this.zenBoostsChild.sendQuery("ZenBoost:DisableSizeOverride"); } + this.currentBoostData.changeWasMade = true; this.updateSizeButtonVisuals(); this.updateCurrentBoost(); }