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-10-06 18:38:22 +0200
commitc79ab638d9fb8cdce843c73090eeff9ef94a02f6 (patch)
treec2d2209e7cf00c70a9af532fc90cb1c105dd13ed
parentd6f9886781a3e669fb31353836ef80d9ddfdb913 (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 {