fix(zenThemes): themes not being updated in other windows

This commit is contained in:
Bryan Galdámez
2024-09-20 22:22:36 -06:00
parent fa0a65f2e7
commit cde7e77aea

View File

@@ -105,9 +105,9 @@ var gZenMarketplaceManager = {
console.log('[ZenThemeMarketplaceParent:settings]: Building themes list');
let themes = await ZenThemesCommon.getThemes();
const themes = await ZenThemesCommon.getThemes();
const browser = ZenThemesCommon.getBrowser();
const browser = ZenThemesCommon.currentBrowser;
const themeList = document.createElement('div');
@@ -791,5 +791,5 @@ Preferences.addAll([
id: 'zen.workspaces.show-icon-strip',
type: 'bool',
default: true,
}
},
]);