From 33b035db4e65f790ea0cef9a016033cd68704bd5 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Tue, 1 Jun 2021 11:45:45 +0200 Subject: [PATCH] fix tiny indicator the desktop style forces a bit of padding onto the indicator which combined with implicit small sizing in a layout means the indicator comes out waaaaaay too small as half the available space is padding. disable padding entirely, we don't really need it here --- kcms/translations/package/contents/ui/main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kcms/translations/package/contents/ui/main.qml b/kcms/translations/package/contents/ui/main.qml index 36d135f14..065ce0928 100644 --- a/kcms/translations/package/contents/ui/main.qml +++ b/kcms/translations/package/contents/ui/main.qml @@ -203,6 +203,8 @@ ScrollViewKCM { QtControls.BusyIndicator { visible: model.IsInstalling running: visible + // the control style (e.g. org.kde.desktop) may force a padding that will shrink the indicator way down. ignore it. + padding: 0 Layout.alignment: Qt.AlignVCenter