aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/ShortcutIcon.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/ShortcutIcon.qml')
-rw-r--r--homescreen/qml/ShortcutIcon.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/homescreen/qml/ShortcutIcon.qml b/homescreen/qml/ShortcutIcon.qml
index 39931d1..2fb653f 100644
--- a/homescreen/qml/ShortcutIcon.qml
+++ b/homescreen/qml/ShortcutIcon.qml
@@ -27,11 +27,11 @@ MouseArea {
Image {
id: icon
anchors.fill: parent
- source: './images/Shortcut/HMI_Shortcut_%1-01.svg'.arg(root.name)
+ source: './images/Shortcut/%1.svg'.arg(root.name.toLowerCase())
}
Image {
anchors.fill: parent
- source: './images/Shortcut/HMI_Shortcut_%1_Active-01.svg'.arg(root.name)
+ source: './images/Shortcut/%1_active.svg'.arg(root.name.toLowerCase())
opacity: 1.0 - icon.opacity
}
Label {