Index: sources/gui/qml/components/NotificationBar.qml =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -refb549a694539630ba7c1d8e348f598052b85f0f --- sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision efb549a694539630ba7c1d8e348f598052b85f0f) @@ -24,11 +24,12 @@ Rectangle { id: _root objectName: "NotificationBar" // SquishQt property alias text : _text.text + property alias textPixelSize : _text.font.pixelSize property alias textColor : _text.color property alias isSilenced : _muteButton.isSilenced property alias timeout : _muteButton.timeout property alias backgroundColor : _root.color - property alias iconVisible : _muteImage.visible + property bool iconVisible : true property bool enableMute : true clip : true // the mute button expands so we need to clip the outside unwanted area. @@ -55,14 +56,14 @@ fadingProperyValue : backgroundColor } - Image { id: _muteImage - source: "qrc:/images/iAlarm" - anchors.right: _text.left - anchors.rightMargin: Variables.notificationBarIconMargin; - anchors.verticalCenter: parent.verticalCenter; - sourceSize.height: Variables.notificationBarIconHeight; - sourceSize.width: Variables.notificationBarIconWidth; - } + // Image { id: _muteImage + // source: "qrc:/images/iAlarm" + // anchors.right: _text.left + // anchors.rightMargin: Variables.notificationBarIconMargin; + // anchors.verticalCenter: parent.verticalCenter; + // sourceSize.height: Variables.notificationBarIconHeight; + // sourceSize.width: Variables.notificationBarIconWidth; + // } Text { id: _text color : Colors.textNotificationNoneFg