From ff7c03a32cfcc8b83f690f996dd0f543f0a90177 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 15 Apr 2020 22:03:59 +0200 Subject: [PATCH] fix opening the entryListPage when clicking on a feed --- src/qml/FeedListPage.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/qml/FeedListPage.qml b/src/qml/FeedListPage.qml index 8b9b5758..f093b9e5 100644 --- a/src/qml/FeedListPage.qml +++ b/src/qml/FeedListPage.qml @@ -76,7 +76,7 @@ Kirigami.ScrollablePage { height: Kirigami.Units.gridUnit * 2 onClicked: { feedList.focus = false - pageStack.push("qrc:/EntryListPage.qml", {"name": "All feeds", "url": "all"}) + pageStack.push("qrc:/EntryListPage.qml") } } @@ -106,6 +106,8 @@ Kirigami.ScrollablePage { } ] + + onClicked: pageStack.push("qrc:/EntryListPage.qml", {"feed": feed}) } } }