fix: make the identicons sharp
This commit is contained in:
parent
acecafbf83
commit
55fbd4b0fe
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -18,6 +18,9 @@ Rectangle {
|
|||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
source: roundedImage.source
|
||||
mipmap: true
|
||||
smooth: false
|
||||
antialiasing: true
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue