Index: sources/gui/qml/components/NotificationBarSmall.qml =================================================================== diff -u -r44a85c96ab55e424866ec4cca0270aa218355f82 -r96d3da12ee7760f0d97fd7c2e9e89e56bcdcf6b1 --- sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision 44a85c96ab55e424866ec4cca0270aa218355f82) +++ sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision 96d3da12ee7760f0d97fd7c2e9e89e56bcdcf6b1) @@ -1,16 +1,16 @@ /*! - * + * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. - * + * * \file NotificationBarSmall.qml * \author (last) Peter Lucia * \date (last) 25-Jun-2020 * \author (original) Peter Lucia * \date (original) 25-Jun-2020 - * + * */ // Qt @@ -50,8 +50,8 @@ spacing: 10 Image { id: _image anchors.verticalCenter: parent.verticalCenter - width : imageAutoSize ? Math.min(_root.height, _root.width) : Variables.notificationIconSize - height: imageAutoSize ? Math.min(_root.height, _root.width) : Variables.notificationIconSize + width : source == "" ? 0 : imageAutoSize ? Math.min(_root.height, _root.width) : Variables.notificationIconSize + height: source == "" ? 0 : imageAutoSize ? Math.min(_root.height, _root.width) : Variables.notificationIconSize } Text { id: _text color : Colors.textNotificationNoneFg