diff --git a/src/qml/main.qml b/src/qml/main.qml index 81d2ffe1..5373483f 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -55,7 +55,10 @@ Kirigami.ApplicationWindow { case "FeedListPage": return "qrc:/FeedListPage.qml"; case "DownloadListPage": return "qrc:/DownloadListPage.qml"; case "SettingsPage": return "qrc:/Settings/SettingsPage.qml"; - default: return "qrc:/FeedListPage.qml"; + default: { + currentPage = "FeedListPage"; + return "qrc:/FeedListPage.qml"; + } } } function pushPage(page) {