fix: make the identicons sharp

This commit is contained in:
Richard Ramos 2020-06-23 13:54:16 -04:00 committed by Iuri Matias
parent acecafbf83
commit 55fbd4b0fe
3 changed files with 13 additions and 2 deletions

View File

@ -65,6 +65,9 @@ Item {
height: 120
fillMode: Image.PreserveAspectFit
source: chatsModel.activeChannel.identicon
mipmap: true
smooth: false
antialiasing: true
}
StyledText {
@ -162,7 +165,10 @@ Item {
fillMode: Image.PreserveAspectFit
source: identicon
visible: isMessage && authorCurrentMsg != authorPrevMsg && !isCurrentUser
mipmap: true
smooth: false
antialiasing: true
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent

View File

@ -26,7 +26,9 @@ Rectangle {
height: 80
fillMode: Image.PreserveAspectCrop
anchors.horizontalCenter: parent.horizontalCenter
mipmap: true
smooth: false
antialiasing: true
property bool rounded: true
property bool adapt: false
y: 78

View File

@ -18,6 +18,9 @@ Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
source: roundedImage.source
mipmap: true
smooth: false
antialiasing: true
}
}