aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorEgor Nemtsev <enemtsev@luxoft.com>2020-03-02 17:43:53 +0300
committerEgor Nemtsev <enemtsev@luxoft.com>2020-03-03 05:25:47 +0000
commit092c64e408fb02804a6000b0adfc2f485e9a12b5 (patch)
tree3ee9fc97e3e5dfd3b96f1181072d4dcd92a5939b /apps
parent0a9cfda65c7dbfcf72881e7c33892ff37548a002 (diff)
[sysui] remove workaround for AUTOSUITE-1366
- remove workaround for absent icon in notifications Task-number: AUTOSUITE-1366 Change-Id: I133cf9cf8c7a86e35c33ebaecb507ac4e0b0b02c Reviewed-by: Vladimir Minenko <vladimir.minenko@pelagicore.com> Reviewed-by: Grigorii Zimin <gzimin@luxoft.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/com.luxoft.vehicle/stores/VehicleStore.qml2
-rw-r--r--apps/com.pelagicore.apps.settings/helper/Helper.qml2
-rw-r--r--apps/com.pelagicore.map/stores/MapStore.qml6
3 files changed, 0 insertions, 10 deletions
diff --git a/apps/com.luxoft.vehicle/stores/VehicleStore.qml b/apps/com.luxoft.vehicle/stores/VehicleStore.qml
index 82a0aae1..d549b2b4 100644
--- a/apps/com.luxoft.vehicle/stores/VehicleStore.qml
+++ b/apps/com.luxoft.vehicle/stores/VehicleStore.qml
@@ -88,8 +88,6 @@ QtObject {
notification.summary = settings3D.value("runtime3D", "qt3d") === "qt3d"
? qsTr("Qt3D Runtime is requested")
: qsTr("Qt 3D Studio Runtime is requested");
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.sticky = true;
notification.show();
}
diff --git a/apps/com.pelagicore.apps.settings/helper/Helper.qml b/apps/com.pelagicore.apps.settings/helper/Helper.qml
index b8c97401..8436e797 100644
--- a/apps/com.pelagicore.apps.settings/helper/Helper.qml
+++ b/apps/com.pelagicore.apps.settings/helper/Helper.qml
@@ -44,8 +44,6 @@ QtObject {
var notification = ApplicationInterface.createNotification();
notification.summary = summary;
notification.body = body;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.sticky = true;
notification.show();
}
diff --git a/apps/com.pelagicore.map/stores/MapStore.qml b/apps/com.pelagicore.map/stores/MapStore.qml
index a4cd5315..602201e8 100644
--- a/apps/com.pelagicore.map/stores/MapStore.qml
+++ b/apps/com.pelagicore.map/stores/MapStore.qml
@@ -318,8 +318,6 @@ QtObject {
notification.summary = qsTr("Offline mode");
notification.body = qsTr("Search and navigation are not available in offline mode");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
notificationTimer.start();
}
@@ -329,8 +327,6 @@ QtObject {
notification.summary = qsTr("Offline map");
notification.body = qsTr("Offline Map only available in Light Theme");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
}
@@ -339,8 +335,6 @@ QtObject {
notification.summary = qsTr("Online map");
notification.body = qsTr("You are now using online map from Mapbox server");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
}
}