From f756a01c3e78ebdb1ebe74efa52b8905a6a2c6b5 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Mon, 20 Nov 2017 21:42:41 +0900 Subject: Change to new color scheme - Color scheme has been changed - Icon and text has been splitted Incoming patch is necessary to show text with icons. Bug-AGL: SPEC-1085 Change-Id: I267a4fef9901b56e355efac7357c101fd9162421 Signed-off-by: Tadao Tanikawa --- homescreen/qml/IconItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'homescreen/qml/IconItem.qml') diff --git a/homescreen/qml/IconItem.qml b/homescreen/qml/IconItem.qml index 32d37b4..c616722 100644 --- a/homescreen/qml/IconItem.qml +++ b/homescreen/qml/IconItem.qml @@ -30,7 +30,7 @@ Item { text: model.icon == 'Blank' ? model.name.toUpperCase() : '' } - source: './images/HMI_AppLauncher_%1_%2-01.png'.arg(model.icon).arg(loc.pressed && (loc.index === model.index || loc.currentId === model.id) ? 'Active' : 'Inactive') + source: './images/HMI_AppLauncher_%1_%2-01.svg'.arg(model.icon).arg(loc.pressed && (loc.index === model.index || loc.currentId === model.id) ? 'Active' : 'Inactive') antialiasing: item.state !== '' Behavior on x { enabled: item.state !== 'active'; NumberAnimation { duration: 400; easing.type: Easing.OutCubic } } Behavior on y { enabled: item.state !== 'active'; NumberAnimation { duration: 400; easing.type: Easing.OutCubic } } -- cgit 1.2.3-korg