aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/ShortcutArea.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/ShortcutArea.qml')
-rw-r--r--homescreen/qml/ShortcutArea.qml15
1 files changed, 11 insertions, 4 deletions
diff --git a/homescreen/qml/ShortcutArea.qml b/homescreen/qml/ShortcutArea.qml
index e0c9182..a2d98c8 100644
--- a/homescreen/qml/ShortcutArea.qml
+++ b/homescreen/qml/ShortcutArea.qml
@@ -24,6 +24,13 @@ Item {
width: 785
height: 218
+ Timer {
+ id:notificationTimer
+ interval: 3000
+ running: false
+ repeat: true
+ onTriggered: notificationItem.visible = false
+ }
ListModel {
id: applicationModel
@@ -36,11 +43,11 @@ Item {
application: 'mediaplayer@0.1'
}
ListElement {
- name: 'HVAC'
- application: 'hvac@0.1'
+ name: 'Video'
+ application: 'video@0.1'
}
ListElement {
- name: 'Navigation'
+ name: 'navigation'
application: 'navigation@0.1'
}
}
@@ -66,7 +73,7 @@ Item {
console.warn(model.application)
console.warn("app cannot be launched!")
}
- homescreenHandler.tapShortcut(model.name)
+ homescreenHandler.tapShortcut(model.name, false)
}
}
}