From 67e88567cb97213348031728d59652b7c10d0e19 Mon Sep 17 00:00:00 2001 From: "Bocklage, Jens" Date: Wed, 7 Dec 2016 16:34:19 +0100 Subject: [PATCH] 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 --- HomeScreen/qml/ShortcutArea.qml | 8 ++++---- 1 file 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' } } -- 2.16.6