Fix busy overlay in cloud signup page

Fixes #118
This commit is contained in:
Michael Zanetti 2019-01-08 21:36:12 +01:00
parent 0b0e33a7b5
commit 54ece29720
2 changed files with 9 additions and 1 deletions

View File

@ -315,7 +315,6 @@ Page {
}
}
Connections {
target: AWSClient
onSignupResult: {
@ -337,6 +336,10 @@ Page {
}
}
}
BusyOverlay {
id: busyOverlay
}
}
}

View File

@ -8,6 +8,11 @@ Rectangle {
property bool shown: false
// Event eater
MouseArea {
anchors.fill: parent
}
BusyIndicator {
anchors.centerIn: parent
}