HLoader component, use Loader.asynchronous prop

This commit is contained in:
miruka
2019-08-11 23:25:22 -04:00
parent fbd7c45fe4
commit 5f72397afe
6 changed files with 15 additions and 9 deletions

View File

@@ -29,12 +29,15 @@ ApplicationWindow {
Shortcuts { id: shortcuts}
Python { id: py }
Loader {
HLoader {
anchors.fill: parent
source: py.ready ? "" : "LoadingScreen.qml"
}
Loader {
HLoader {
// true makes the initially loaded chat page invisible for some reason
asynchronous: false
id: uiLoader
anchors.fill: parent
scale: py.ready ? 1 : 0.5