Load Chat faster by delaying EventList loading

This commit is contained in:
miruka
2020-03-11 12:53:55 -04:00
parent 8a43690676
commit b26fe10810
4 changed files with 36 additions and 9 deletions

View File

@@ -54,8 +54,9 @@ Item {
width: 96 * theme.uiScale
height: width
source: opacity > 0 ? "../../Base/HBusyIndicator.qml" : ""
opacity: ready ? 0 : 1
source: "../../Base/HBusyIndicator.qml"
active: ready ? 0 : 1
opacity: active ? 1 : 0
Behavior on opacity { HNumberAnimation { factor: 2 } }
}