diff options
author | Mayeul Cantan <oss+nheko@mayeul.net> | 2020-08-21 21:17:35 +0200 |
---|---|---|
committer | Mayeul Cantan <oss+nheko@mayeul.net> | 2020-10-31 23:40:45 +0100 |
commit | a176f0bf35a3e855f269d6349ebce37252746f94 (patch) | |
tree | aa6e59d785959458610907ee797b48df6815d98e /resources | |
parent | Merge pull request #313 from MayeulC/shrug-text (diff) | |
download | nheko-a176f0bf35a3e855f269d6349ebce37252746f94.tar.xz |
Smooth Avatars in timeline
This helps on low-dpi screens, getting rid of the jaggies.
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/Avatar.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Avatar.qml b/resources/qml/Avatar.qml index 34b029a6..4adff572 100644 --- a/resources/qml/Avatar.qml +++ b/resources/qml/Avatar.qml @@ -33,7 +33,7 @@ Rectangle { asynchronous: true fillMode: Image.PreserveAspectCrop mipmap: true - smooth: false + smooth: true sourceSize.width: avatar.width sourceSize.height: avatar.height layer.enabled: true |