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

dankbar: try to fix binding issues on creation

This commit is contained in:
bbedward
2025-11-29 22:36:20 -05:00
parent b11b375848
commit 50ab346d58

View File

@@ -120,7 +120,10 @@ Item {
delegate: Loader {
id: barLoader
required property var modelData
property var barConfig: SettingsData.getBarConfig(modelData.id)
property var barConfig: {
SettingsData.barConfigs;
return SettingsData.getBarConfig(modelData.id);
}
active: barConfig?.enabled ?? false
asynchronous: false