aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/ShortcutArea.qml
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2017-12-22 14:18:17 +0900
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2017-12-25 06:54:47 +0000
commit8b2fa00276456759fffdd97e210f643b46a0cb1e (patch)
treebdaa1347c83392e6d521f3be3e319f1dc28f9a0c /homescreen/qml/ShortcutArea.qml
parentcd5467722cc9365a6c04d410cb579580460f171e (diff)
Improve management icons of homescreen
- sort out filenames of icons - remove unnecessary margins of icon - fix rule of converting metadata of app to icon's filename Before: filename is made from id returns appfw After: filename is lowercase of name defined in config.xml - Add 2 new builtin icons, VIDEO and WEBBROWSER Bug-AGL: SPEC-673 Change-Id: I606841b19c884687237c92012724f5a1a3f6f603 Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'homescreen/qml/ShortcutArea.qml')
-rw-r--r--homescreen/qml/ShortcutArea.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/homescreen/qml/ShortcutArea.qml b/homescreen/qml/ShortcutArea.qml
index 0c00f8c..63f8e7b 100644
--- a/homescreen/qml/ShortcutArea.qml
+++ b/homescreen/qml/ShortcutArea.qml
@@ -32,14 +32,12 @@ Item {
application: ''
}
ListElement {
- name: 'MediaPlayer'
+ name: 'Music'
application: 'mediaplayer@0.1'
}
ListElement {
name: 'HVAC'
application: 'hvac@0.1'
-// name: 'Radio'
-// application: 'radio@0.1'
}
ListElement {
name: 'Navigation'
@@ -75,6 +73,7 @@ Item {
// layoutHandler.showAppLayer(model.application, pid)
}
else {
+ console.warn(model.application)
console.warn("app cannot be launched!")
}
}