Clean high number notification in bubble

This commit is contained in:
Julien Wadel 2021-08-25 18:17:01 +02:00
parent de5322327e
commit a0bab8083d
2 changed files with 1 additions and 2 deletions

View file

@ -28,7 +28,7 @@ Icon {
anchors.centerIn: parent
color: MessageCounterStyle.text.color
font.pointSize: MessageCounterStyle.text.pointSize
text: messageCounter.count
text: (messageCounter.count>99 ? '+' : messageCounter.count)
}
}
}

View file

@ -164,7 +164,6 @@ DialogPlus {
MouseArea{
anchors.fill:parent
onClicked: {
//mainRectangle.window.detachVirtualWindow()
mainRectangle.window.attachVirtualWindow(Qt.resolvedUrl('InfoEncryption.qml')
,{securityLevel : mainRectangle.securityLevel
, addressToCall : mainRectangle.addressToCall}