diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-12-13 19:09:03 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-12-13 19:09:03 +0100 |
commit | a0699f52475f5a2fca9d261bb886f8680b5ecf5d (patch) | |
tree | afd0b820f4981859392d23f237055fff39a09afe /resources/qml/dialogs | |
parent | Fix turnserver check not being started when restoring from cache (diff) | |
download | nheko-a0699f52475f5a2fca9d261bb886f8680b5ecf5d.tar.xz |
Multiply source size by scale factor
Might be unnecessary, but docs are unclear on that.
Diffstat (limited to 'resources/qml/dialogs')
-rw-r--r-- | resources/qml/dialogs/UserProfile.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/dialogs/UserProfile.qml b/resources/qml/dialogs/UserProfile.qml index ba3f3a45..c1f0df3b 100644 --- a/resources/qml/dialogs/UserProfile.qml +++ b/resources/qml/dialogs/UserProfile.qml @@ -305,8 +305,8 @@ ApplicationWindow { Layout.preferredHeight: 16 Layout.preferredWidth: 16 visible: profile.isSelf && verificationStatus != VerificationStatus.NOT_APPLICABLE - sourceSize.height: 16 - sourceSize.width: 16 + sourceSize.height: 16 * Screen.devicePixelRatio + sourceSize.width: 16 * Screen.devicePixelRatio source: { switch (verificationStatus) { case VerificationStatus.VERIFIED: |