aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-11-19 18:13:53 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2018-11-19 18:13:53 +0800
commitda8d7c1291e930778853eb9f241054abf9c633ee (patch)
treef52c7a227d9202cb3ce90432f95f1aae5a08ff7a /homescreen/qml
parentb3476f1c2debc23411a66b1498065ab575879e22 (diff)
change bg image opacity, add check icon conditionsandbox/wangzhiqiang/new_verbs
Change-Id: I941f8aa2c14911af68c169377ad511562f369070
Diffstat (limited to 'homescreen/qml')
-rw-r--r--homescreen/qml/images/AGL_HMI_Blue_Background_NoCar-01.pngbin949053 -> 951359 bytes
-rw-r--r--homescreen/qml/main.qml8
2 files changed, 2 insertions, 6 deletions
diff --git a/homescreen/qml/images/AGL_HMI_Blue_Background_NoCar-01.png b/homescreen/qml/images/AGL_HMI_Blue_Background_NoCar-01.png
index 357c204..a4e026c 100644
--- a/homescreen/qml/images/AGL_HMI_Blue_Background_NoCar-01.png
+++ b/homescreen/qml/images/AGL_HMI_Blue_Background_NoCar-01.png
Binary files differ
diff --git a/homescreen/qml/main.qml b/homescreen/qml/main.qml
index 164cbf7..24ee262 100644
--- a/homescreen/qml/main.qml
+++ b/homescreen/qml/main.qml
@@ -136,18 +136,14 @@ Window {
container.state = 'fullscreen'
touchArea.switchArea(1)
homescreenHandler.tapShortcut(appName, true)
- if (appName === 'navigation' || appName === 'browser') {
- container.opacity = 0.0
- }
+ container.opacity = 0.0
} else {
image.source = './images/normal.png'
btnState = 'normal'
container.state = 'normal'
touchArea.switchArea(0)
homescreenHandler.tapShortcut(appName, false)
- if (appName === 'navigation' || appName === 'browser') {
- container.opacity = 1.0
- }
+ container.opacity = 1.0
}
}
}