From 5f2e143ab8821ad54331cbba231d31a834ea5c8f Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Wed, 21 Jun 2023 08:26:01 -0700 Subject: [PATCH] chore: allow themes to override eachother (#7188) --- core/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/theme.ts b/core/theme.ts index 9d163fcfd..e52039031 100644 --- a/core/theme.ts +++ b/core/theme.ts @@ -74,7 +74,7 @@ export class Theme implements ITheme { this.fontStyle = Object.create(null) as FontStyle; // Register the theme by name. - registry.register(registry.Type.THEME, name, this); + registry.register(registry.Type.THEME, name, this, true); } /**