aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/homescreenhandler.cpp
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/src/homescreenhandler.cpp
parentb3476f1c2debc23411a66b1498065ab575879e22 (diff)
change bg image opacity, add check icon conditionsandbox/wangzhiqiang/new_verbs
Change-Id: I941f8aa2c14911af68c169377ad511562f369070
Diffstat (limited to 'homescreen/src/homescreenhandler.cpp')
-rw-r--r--homescreen/src/homescreenhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/homescreen/src/homescreenhandler.cpp b/homescreen/src/homescreenhandler.cpp
index 2d51099..32eabd1 100644
--- a/homescreen/src/homescreenhandler.cpp
+++ b/homescreen/src/homescreenhandler.cpp
@@ -60,7 +60,7 @@ void HomescreenHandler::init(int port, const char *token)
json_object_object_get(p_obj, "text"));
QFileInfo icon_file(icon);
QString icon_path;
- if (icon_file.exists()) {
+ if (icon_file.isFile() && icon_file.exists()) {
icon_path = QString(QLatin1String(icon));
} else {
icon_path = "./images/Utility_Logo_Grey-01.svg";