diff options
author | q234rty <q23456yuiop@gmail.com> | 2022-12-06 01:49:42 +0800 |
---|---|---|
committer | q234rty <q23456yuiop@gmail.com> | 2022-12-06 01:49:42 +0800 |
commit | 93291abfdf0897c626e69f1ffc1585a6170070fd (patch) | |
tree | d8e547c141a7114b74e883a3dbaebae1537f892b /resources | |
parent | Fix people icon blurriness (diff) | |
download | nheko-93291abfdf0897c626e69f1ffc1585a6170070fd.tar.xz |
Fix downscale
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/EncryptionIndicator.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/EncryptionIndicator.qml b/resources/qml/EncryptionIndicator.qml index 0bbdffc6..04d4bace 100644 --- a/resources/qml/EncryptionIndicator.qml +++ b/resources/qml/EncryptionIndicator.qml @@ -34,8 +34,8 @@ Image { width: 16 height: 16 - sourceSize.height: height * Screen.devicePixelRatio - sourceSize.width: width * Screen.devicePixelRatio + sourceSize.height: height + sourceSize.width: width source: { if (encrypted) { switch (trust) { |