From 5882781a9f53980dc2442cb9b1831a0d9b8f13e3 Mon Sep 17 00:00:00 2001 From: Bart De Vries Date: Sat, 30 Oct 2021 19:46:30 +0200 Subject: [PATCH] Reverse subscriptions and episodes in main menu This is probably a more useful order. It's also consistent with the new mobile bottom toolbar. --- src/qml/main.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 4ca67b94..0d8df76d 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -124,15 +124,6 @@ Kirigami.ApplicationWindow { SettingsManager.lastOpenedPage = "DiscoverPage" // for persistency } }, - Kirigami.Action { - text: i18n("Episodes") - iconName: "rss" - checked: currentPage == "EpisodeListPage" - onTriggered: { - pushPage("EpisodeListPage") - SettingsManager.lastOpenedPage = "EpisodeListPage" // for persistency - } - }, Kirigami.Action { text: i18n("Subscriptions") iconName: "bookmarks" @@ -142,6 +133,15 @@ Kirigami.ApplicationWindow { SettingsManager.lastOpenedPage = "FeedListPage" // for persistency } }, + Kirigami.Action { + text: i18n("Episodes") + iconName: "rss" + checked: currentPage == "EpisodeListPage" + onTriggered: { + pushPage("EpisodeListPage") + SettingsManager.lastOpenedPage = "EpisodeListPage" // for persistency + } + }, Kirigami.Action { text: i18n("Downloads") iconName: "download"