From 53936d7034c2a53844d941b19fcb4a29c41aa11b Mon Sep 17 00:00:00 2001 From: purian23 Date: Thu, 28 May 2026 11:42:07 -0400 Subject: [PATCH] Revert "fix(IconTheme): apply stored icon theme at startup (#2511)" This reverts commit aafc2ea4d7528b53c706f69214071fb819fc4fce. --- quickshell/Common/SettingsData.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index 75e8d944..14dfe8f5 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -1384,7 +1384,6 @@ Singleton { _loadedSettingsSnapshot = JSON.stringify(Store.toJson(root)); _hasLoaded = true; applyStoredTheme(); - applyStoredIconTheme(); updateCompositorCursor(); Processes.detectQtTools(); @@ -1395,7 +1394,6 @@ Singleton { log.error("Failed to parse settings.json - file will not be overwritten. Error:", msg); Qt.callLater(() => ToastService.showError(I18n.tr("Failed to parse settings.json"), msg)); applyStoredTheme(); - applyStoredIconTheme(); } finally { _loading = false; } @@ -3154,7 +3152,6 @@ Singleton { _loadedSettingsSnapshot = JSON.stringify(Store.toJson(root)); _hasLoaded = true; applyStoredTheme(); - applyStoredIconTheme(); updateCompositorCursor(); } catch (e) { _parseError = true; @@ -3168,7 +3165,6 @@ Singleton { onLoadFailed: error => { if (!isGreeterMode) { applyStoredTheme(); - applyStoredIconTheme(); } } onSaveFailed: error => {