From d14cc1e94f0716aa580f228e81f64fa82d5cd5c1 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Mon, 24 May 2021 19:17:24 +0300 Subject: [PATCH] [themes] fix bug 50556 --- apps/common/main/lib/controller/Themes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 3bed91e66..d6c33c59d 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -206,7 +206,7 @@ define([ $(window).on('storage', function (e) { if ( e.key == 'ui-theme' ) { - me.setTheme(e.originalEvent.newValue); + me.setTheme(e.originalEvent.newValue, true); } })