mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Make pagination spinner inline
This commit is contained in:
parent
1f9d3024b1
commit
21b33363ce
1 changed files with 8 additions and 1 deletions
|
@ -93,7 +93,7 @@ Page {
|
||||||
|
|
||||||
BusyIndicator {
|
BusyIndicator {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
running: timelineManager.isInitialSync || chat.model.paginationInProgress
|
running: timelineManager.isInitialSync
|
||||||
height: 200
|
height: 200
|
||||||
width: 200
|
width: 200
|
||||||
z: 3
|
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 {
|
Rectangle {
|
||||||
|
|
Loading…
Reference in a new issue