Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -rc6c42296a6cb4a9c3cd7e4cc1505ddc0475a5a18 -r0e89091aa74827e67eba1c165cd396d8c5a65382 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision c6c42296a6cb4a9c3cd7e4cc1505ddc0475a5a18) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 0e89091aa74827e67eba1c165cd396d8c5a65382) @@ -49,9 +49,6 @@ property int headerOverlap : 30 - property string figureTextString : ("%1 %2.").arg(qsTr("Figure")).arg(_listView.currentIndex + 1) - property bool showFigureText : false - // Look for this tag: #First_Time_Message_Sent_With_Silenced // the isSilenced is helping not to show this dialog maximized and // then if the silence is set minimize it immediately @@ -213,20 +210,6 @@ wrapMode : Text.WordWrap } - Text { id: _figureText - anchors { - left: _delegateText.left - leftMargin: _delegateText.contentWidth + Variables.defaultMargin - verticalCenter: parent.verticalCenter - } - height : parent.height - font.pixelSize : 22 - font.italic : true - color : "#18559E" - text : ("(%1)").arg(_root.figureTextString) - visible : _delegateControl.ListView.isCurrentItem && _root.showFigureText - } - MouseArea { anchors.fill: parent onClicked: { @@ -249,19 +232,6 @@ height: parent.height fillMode: Image.PreserveAspectFit } - - Text { id: _imageFigureText - anchors { - top: _figureImage.bottom - right: _figureImage.right - } - - font.pixelSize : 23 - font.weight : Font.Medium - color : Colors.alarmDialogGreyText - text : _root.figureTextString - visible : _root.showFigureText - } } } }