1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 21:45:38 -05:00

Fix icon theme change

This commit is contained in:
bbedward
2025-07-27 22:52:16 -04:00
parent 77051d0d62
commit 420891e047
5 changed files with 191 additions and 104 deletions

View File

@@ -85,16 +85,17 @@ ScrollView {
DankDropdown {
width: parent.width
text: "Icon Theme"
description: "Select icon theme (requires restart)"
description: "Select icon theme (may require logout to apply)"
currentValue: Prefs.iconTheme
options: Prefs.availableIconThemes
onValueChanged: (value) => {
Prefs.setIconTheme(value);
if (value !== "System Default" && !Prefs.qt5ctAvailable && !Prefs.qt6ctAvailable) {
ToastService.showWarning("qt5ct or qt6ct not found - Qt app themes may not update without these tools");
}
}
}
}
}
// Transparency Settings Section