1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-05 05:12:05 -04:00

launcher: fix invalid icon rendering wrong icon

This commit is contained in:
bbedward
2026-01-04 22:58:20 -05:00
parent 9b027df1d5
commit c1d95a3086
3 changed files with 4 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ Rectangle {
width: root.iconSize
height: root.iconSize
anchors.verticalCenter: parent.verticalCenter
iconValue: model.icon && model.icon !== "" ? model.icon : model.startupClass
iconValue: (model.icon && model.icon !== "") ? model.icon : ""
iconSize: root.iconSize
fallbackText: (model.name && model.name.length > 0) ? model.name.charAt(0).toUpperCase() : "A"
iconMargins: root.iconMargins