From 6fb7118e34c5db021eb29e0a4d3e2add8914c52e Mon Sep 17 00:00:00 2001 From: Bart De Vries Date: Mon, 30 May 2022 22:56:16 +0200 Subject: [PATCH] Add action to episode details page to go to the episode list for that subscription Solves #28 --- src/qml/EntryPage.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/qml/EntryPage.qml b/src/qml/EntryPage.qml index a55d430d..d7852f45 100644 --- a/src/qml/EntryPage.qml +++ b/src/qml/EntryPage.qml @@ -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}); + } } ] }