summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorLasath Fernando <devel@lasath.org>2020-04-29 03:15:20 -0700
committerLasath Fernando <devel@lasath.org>2020-04-29 13:52:39 -0700
commit21b33363ce852fbd32b000be86e49386c553228d (patch)
treebeaf67a72558e9fde9e95150ddbfba0cf831c2f6 /resources/qml
parentAdd visual indication that data is being fetched (diff)
downloadnheko-21b33363ce852fbd32b000be86e49386c553228d.tar.xz
Make pagination spinner inline
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TimelineView.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index 3651a6f1..dc1dda25 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -93,7 +93,7 @@ Page { BusyIndicator { anchors.centerIn: parent - running: timelineManager.isInitialSync || chat.model.paginationInProgress + running: timelineManager.isInitialSync height: 200 width: 200 z: 3 @@ -251,6 +251,13 @@ Page { } } + footer: BusyIndicator { + anchors.horizontalCenter: parent.horizontalCenter + running: chat.model && chat.model.paginationInProgress + height: 50 + width: 50 + z: 3 + } } Rectangle {