summaryrefslogtreecommitdiffstats
path: root/homescreen/qml/ShortcutArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/ShortcutArea.qml')
-rw-r--r--homescreen/qml/ShortcutArea.qml6
1 files changed, 1 insertions, 5 deletions
diff --git a/homescreen/qml/ShortcutArea.qml b/homescreen/qml/ShortcutArea.qml
index d7e97f0..e0c9182 100644
--- a/homescreen/qml/ShortcutArea.qml
+++ b/homescreen/qml/ShortcutArea.qml
@@ -28,22 +28,18 @@ Item {
ListModel {
id: applicationModel
ListElement {
- appid: 'launcher'
name: 'launcher'
application: 'launcher@0.1'
}
ListElement {
- appid: 'mediaplayer'
name: 'MediaPlayer'
application: 'mediaplayer@0.1'
}
ListElement {
- appid: 'hvac'
name: 'HVAC'
application: 'hvac@0.1'
}
ListElement {
- appid: 'navigation'
name: 'Navigation'
application: 'navigation@0.1'
}
@@ -70,7 +66,7 @@ Item {
console.warn(model.application)
console.warn("app cannot be launched!")
}
- homescreenHandler.tapShortcut(model.appid)
+ homescreenHandler.tapShortcut(model.name)
}
}
}