aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-07 16:34:19 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-07 16:34:19 +0100
commit67e88567cb97213348031728d59652b7c10d0e19 (patch)
treef3bd1171ff0ba0785384f9fb3edce6b1e712ceae
parent11c200531ef5c6d8bb93d952aed45e27a454ec44 (diff)
Link to available apps
The shortcuts on the top of the HomeScreen app now launch following apps: * Home launches home@0.1 * Multimedia launches radio@0.1 * HVAC launches hvac@0.1 * Navigation launches controls@0.1 Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
-rw-r--r--HomeScreen/qml/ShortcutArea.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml
index 1d4a7c0..9ef8701 100644
--- a/HomeScreen/qml/ShortcutArea.qml
+++ b/HomeScreen/qml/ShortcutArea.qml
@@ -36,19 +36,19 @@ Item {
id: applicationModel
ListElement {
name: 'Home'
- application: 'webapps-rabbit@0.0'
+ application: 'home@0.1'
}
ListElement {
name: 'Multimedia'
- application: 'smarthome@0.1'
+ application: 'radio@0.1'
}
ListElement {
name: 'HVAC'
- application: 'hvac'
+ application: 'hvac@0.1'
}
ListElement {
name: 'Navigation'
- application: 'navigation'
+ application: 'controls@0.1'
}
}