From cc4127df03fda79e8e4923176be3492333f4beae Mon Sep 17 00:00:00 2001 From: emizzle Date: Fri, 4 Sep 2020 12:30:53 +1000 Subject: [PATCH] fix: Revert SVGImage component change due to bluriness --- ui/shared/SVGImage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/shared/SVGImage.qml b/ui/shared/SVGImage.qml index 966928c608..1fde35ecd7 100644 --- a/ui/shared/SVGImage.qml +++ b/ui/shared/SVGImage.qml @@ -3,7 +3,7 @@ import QtQuick 2.13 // Source: https://forum.qt.io/topic/52161/properly-scaling-svg-images/6 Image { - sourceSize: Qt.size(Math.max(hiddenImg.sourceSize.width * 2, 250), Math.max(hiddenImg.sourceSize.height * 2, 250)) + sourceSize: Qt.size(hiddenImg.sourceSize.width * 2, hiddenImg.sourceSize.height * 2) Image { id: hiddenImg source: parent.source