Add action to episode details page to go to the episode list for that subscription

Solves #28
This commit is contained in:
Bart De Vries 2022-05-30 22:56:16 +02:00
parent 7889572698
commit 6fb7118e34
1 changed files with 9 additions and 0 deletions

View File

@ -214,6 +214,15 @@ Kirigami.ScrollablePage {
onTriggered: {
entry.new = !entry.new
}
},
Kirigami.Action {
text: i18n("Open Podcast")
onTriggered: {
pushPage("FeedListPage")
SettingsManager.lastOpenedPage = "FeedListPage" // for persistency
lastFeed = entry.feed.url;
pageStack.push("qrc:/EntryListPage.qml", {"feed": entry.feed});
}
}
]
}