mirror of https://github.com/KDE/kasts.git
Reverse subscriptions and episodes in main menu
This is probably a more useful order. It's also consistent with the new mobile bottom toolbar.
This commit is contained in:
parent
ad5213176e
commit
5882781a9f
|
@ -124,15 +124,6 @@ Kirigami.ApplicationWindow {
|
||||||
SettingsManager.lastOpenedPage = "DiscoverPage" // for persistency
|
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 {
|
Kirigami.Action {
|
||||||
text: i18n("Subscriptions")
|
text: i18n("Subscriptions")
|
||||||
iconName: "bookmarks"
|
iconName: "bookmarks"
|
||||||
|
@ -142,6 +133,15 @@ Kirigami.ApplicationWindow {
|
||||||
SettingsManager.lastOpenedPage = "FeedListPage" // for persistency
|
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 {
|
Kirigami.Action {
|
||||||
text: i18n("Downloads")
|
text: i18n("Downloads")
|
||||||
iconName: "download"
|
iconName: "download"
|
||||||
|
|
Loading…
Reference in New Issue