aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-23 22:44:09 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-23 22:45:30 +0100
commite0e3b6360100288907a240888a80ee16fe013f8b (patch)
tree1bc1b93ba115961215b6fb2cacaff087bb62ab15
parent3eabb80398a35472d62c05d6d91293bdc74c9c2a (diff)
downloadsubsurface-e0e3b6360100288907a240888a80ee16fe013f8b.tar.gz
Mobile/filtering: make busy indicator smaller
Suggested-by: Jan Mulder <jlmulder@xs4all.nl> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--mobile-widgets/qml/main.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index d2988f115..a954dfbc4 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -58,8 +58,9 @@ Kirigami.ApplicationWindow {
BusyIndicator {
id: busy
running: false
- anchors.fill: parent
- anchors.margins: Kirigami.Units.gridUnit
+ height: 6 * Kirigami.Units.gridUnit
+ width: 6 * Kirigami.Units.gridUnit
+ anchors.centerIn: parent
}
function showBusy() {