1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-10 15:52:58 -04:00

desktop plugins: enable by default

This commit is contained in:
bbedward
2025-12-23 14:10:55 -05:00
parent a5b9ff98c0
commit 1d4d145187
2 changed files with 8 additions and 8 deletions

View File

@@ -227,7 +227,7 @@ Singleton {
};
_updateAvailablePluginsList();
pluginListUpdated();
const enabled = SettingsData.getPluginSetting(manifest.id, "enabled", false);
const enabled = info.type === "desktop" || SettingsData.getPluginSetting(manifest.id, "enabled", false);
if (enabled && !info.loaded)
loadPlugin(manifest.id);
} else {