Index: sources/gui/qml/components/NotificationBar.qml =================================================================== diff -u -r7ec3c17557cc787170546ba490dcd63ddefe0f67 -reea7f072f684a611d54f86b14c9d68e316bba0c6 --- sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision 7ec3c17557cc787170546ba490dcd63ddefe0f67) +++ sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision eea7f072f684a611d54f86b14c9d68e316bba0c6) @@ -14,7 +14,6 @@ // Qt import QtQuick 2.12 -import QtGraphicalEffects 1.12 // Project import Gui.Actions 0.1 @@ -76,15 +75,6 @@ sourceSize.width: Variables.notificationBarIconWidth; } - ColorOverlay { - id: _icon_overlay - anchors.fill: _icon; - source: _icon; - color: _root.backgroundColor; - cached: true; - antialiasing: true; - } - Text { id: _text color : Colors.textNotificationNoneFg anchors.centerIn : parent @@ -96,22 +86,13 @@ Image { id: _bell source: isSilenced ? "qrc:/images/bell-off.svg" : "qrc:/images/bell.svg" - anchors.left: _text.right - anchors.leftMargin: Variables.notificationBarIconMargin; + anchors.left: _root.left + anchors.leftMargin: Variables.silenceIconMargin; anchors.verticalCenter: parent.verticalCenter; sourceSize.height: Variables.notificationBarIconHeight; sourceSize.width: Variables.notificationBarIconWidth; } - ColorOverlay { - id: _bell_overlay - anchors.fill: _bell; - source: _bell; - color: Colors.textMain; - cached: true; - antialiasing: true; - } - Text { id: _timeout_text color : Colors.textMain; anchors.left : _bell.right