1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 05:55:37 -05:00

make icon theme searchable

This commit is contained in:
bbedward
2025-07-28 11:47:55 -04:00
parent d4e5e60e7b
commit e17bd982fe
2 changed files with 10 additions and 1 deletions

View File

@@ -87,7 +87,14 @@ ScrollView {
text: "Icon Theme"
description: "Select icon theme"
currentValue: Prefs.iconTheme
options: Prefs.availableIconThemes
enableFuzzySearch: true
popupWidthOffset: 100
maxPopupHeight: 400
options: {
// Force refresh of icon themes to prevent stale data
Prefs.detectAvailableIconThemes();
return Prefs.availableIconThemes;
}
onValueChanged: (value) => {
Prefs.setIconTheme(value);
if (value !== "System Default" && !Prefs.qt5ctAvailable && !Prefs.qt6ctAvailable) {