diff --git a/src/gui/Base/HImage.qml b/src/gui/Base/HImage.qml index a0272c14..8134ceeb 100644 --- a/src/gui/Base/HImage.qml +++ b/src/gui/Base/HImage.qml @@ -105,7 +105,9 @@ Image { } anchors.centerIn: parent - width: Math.min(parent.width, parent.height) * 0.5 + width: Math.min( + 96 * theme.uiScale, Math.min(parent.width, parent.height) * 0.5, + ) height: width active: image.status === Image.Loading sourceComponent: HBusyIndicator {}