fix opening the entryListPage when clicking on a feed

This commit is contained in:
Tobias Fella 2020-04-15 22:03:59 +02:00
parent 4412d1094f
commit ff7c03a32c
1 changed files with 3 additions and 1 deletions

View File

@ -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})
}
}
}