From b5022c555adcec892c4f67e8a5623590f03ecd69 Mon Sep 17 00:00:00 2001 From: Red J Adaya Date: Tue, 5 Mar 2024 08:40:30 +0800 Subject: [PATCH] force re-rerender when switching themes (#374) --- src/models/model.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/model.ts b/src/models/model.ts index 886fada5..e86eb3b0 100644 --- a/src/models/model.ts +++ b/src/models/model.ts @@ -1215,6 +1215,7 @@ class Model { } if (themeUpdated) { loadTheme(newTheme); + this.bumpRenderVersion(); } }