Add refresh action to EntryListPage

This commit is contained in:
Tobias Fella 2020-04-26 23:53:44 +02:00
parent 14d8819fb5
commit 7b2fbfdca6

View File

@ -43,6 +43,12 @@ Kirigami.ScrollablePage {
}
]
actions.main: Kirigami.Action {
iconName: "view-refresh"
text: i18n("Refresh Feed")
onTriggered: entryListModel.fetch()
}
Component.onCompleted: {
entryListModel.fetch();
}