Merge "Improve output of multiple screen resolution"
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Thu, 2 Aug 2018 14:42:12 +0000 (14:42 +0000)
committerGerrit Code Review <gerrit@automotivelinux.org>
Thu, 2 Aug 2018 14:42:12 +0000 (14:42 +0000)
launcher/src/applicationmodel.cpp

index 90f81de..17e38fb 100644 (file)
@@ -60,8 +60,10 @@ ApplicationModel::Private::Private()
         auto const id = jso["id"].toString();
         auto const icon = get_icon_name(jso);
 
-        // Hide HomeScreen icon itself
-        if (name != "launcher" && name != "homescreen-2017" && name != "OnScreenApp") {
+        if ( name != "launcher" &&
+             name != "homescreen-2017" &&
+             name != "homescreen" &&
+             name != "OnScreenApp") {
             this->data.append(AppInfo(icon, name, id));
         }