summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-09-16 17:23:42 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-11-23 21:51:03 +0100
commita8ab7bb56fd05bb0f193b10034057abaa88936e2 (patch)
treefeb3bb701487ff3d598a9d85dc016269118c4ef8
parentf94cbc2234c7a1a6f9d50d57932d8dd98c499676 (diff)
[ui] progress bar
-rw-r--r--gui/components/Splash.qml12
1 files changed, 9 insertions, 3 deletions
diff --git a/gui/components/Splash.qml b/gui/components/Splash.qml
index f8ba06a..0529d76 100644
--- a/gui/components/Splash.qml
+++ b/gui/components/Splash.qml
@@ -19,14 +19,20 @@ Page {
Image {
id: connectionImage
- height: 200
+ height: 180
anchors.horizontalCenter: parent.horizontalCenter
source: "../resources/icon-noshield.svg"
fillMode: Image.PreserveAspectFit
}
- Spinner {
- id: splashSpinner
+ VerticalSpacer {
+ visible: true
+ height: root.height * 0.10
+ }
+
+ ProgressBar {
+ anchors.horizontalCenter: parent.horizontalCenter
+ indeterminate: true
}
InitErrors {