mirror of https://github.com/KDE/kasts.git
Add action to episode details page to go to the episode list for that subscription
Solves #28
This commit is contained in:
parent
7889572698
commit
6fb7118e34
|
@ -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});
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue