diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-03-11 23:09:57 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-06-09 18:23:32 -0400 |
commit | 07a922dc63428ae9a73ddbb3874d0334ce0c10b4 (patch) | |
tree | fef81f24db0ffadee36564fc5340972a6bd7ed08 /resources/qml/TimelineView.qml | |
parent | Basic community list model (diff) | |
download | nheko-07a922dc63428ae9a73ddbb3874d0334ce0c10b4.tar.xz |
Add Nheko logo QML Spinner
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 095103fa..a4800f39 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -6,6 +6,8 @@ import "./delegates" import "./device-verification" import "./emoji" import "./voip" +import "./ui" + import Qt.labs.platform 1.1 as Platform import QtGraphicalEffects 1.0 import QtQuick 2.9 @@ -29,12 +31,13 @@ Item { color: Nheko.colors.text } - BusyIndicator { + Spinner { visible: running anchors.centerIn: parent + foreground: timelineRoot.colors.mid running: TimelineManager.isInitialSync - height: 200 - width: 200 + // height is somewhat arbitrary here... don't set width because width scales w/ height + height: parent.height / 16 z: 3 } |