summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2021-03-11 23:09:57 -0500
committerJoseph Donofry <joedonofry@gmail.com>2021-06-09 18:23:32 -0400
commit07a922dc63428ae9a73ddbb3874d0334ce0c10b4 (patch)
treefef81f24db0ffadee36564fc5340972a6bd7ed08 /resources/qml/TimelineView.qml
parentBasic community list model (diff)
downloadnheko-07a922dc63428ae9a73ddbb3874d0334ce0c10b4.tar.xz
Add Nheko logo QML Spinner
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml9
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
     }