1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-08 12:13:31 -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
@@ -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