From fb01392bc3ea63e99e40ced26beb367e8dec8bf7 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Sun, 7 Sep 2025 14:29:14 -0400 Subject: [PATCH] Settings: cleanup --- Commons/Settings.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Commons/Settings.qml b/Commons/Settings.qml index 82277d8..d0e94dd 100644 --- a/Commons/Settings.qml +++ b/Commons/Settings.qml @@ -77,13 +77,12 @@ Singleton { const sections = ["left", "center", "right"] // ----------------- - // 1st. check our settings are not super old, when we only had the widget type as a string + // 1st. check our settings are not super old, when we only had the widget type as a plain string for (var s = 0; s < sections.length; s++) { const sectionName = sections[s] for (var i = 0; i < adapter.bar.widgets[sectionName].length; i++) { var widget = adapter.bar.widgets[sectionName][i] if (typeof widget === "string") { - console.log("founf old stuff") adapter.bar.widgets[sectionName][i] = { "id": widget }