From 057d592a1a6f559235e9b61ec54c11b1c5c2fc21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Mon, 17 Jun 2013 15:22:15 +0200 Subject: [PATCH] Ensure the busyindicator is square --- src/declarativeimports/plasmacomponents/qml/BusyIndicator.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/declarativeimports/plasmacomponents/qml/BusyIndicator.qml b/src/declarativeimports/plasmacomponents/qml/BusyIndicator.qml index 4d371f203..756714dab 100644 --- a/src/declarativeimports/plasmacomponents/qml/BusyIndicator.qml +++ b/src/declarativeimports/plasmacomponents/qml/BusyIndicator.qml @@ -74,8 +74,8 @@ Item { elementId: "busywidget" anchors.centerIn: parent - width: busy.width - height: busy.height + width: Math.min(busy.width, busy.height) + height: width smooth: !running || smoothAnimation } }