From 07a922dc63428ae9a73ddbb3874d0334ce0c10b4 Mon Sep 17 00:00:00 2001 From: Joseph Donofry Date: Thu, 11 Mar 2021 23:09:57 -0500 Subject: Add Nheko logo QML Spinner --- resources/qml/TimelineView.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'resources/qml/TimelineView.qml') 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 } -- cgit 1.5.1