diff --git a/modules/gui/qt/playlist/qml/PlaylistListView.qml b/modules/gui/qt/playlist/qml/PlaylistListView.qml index 1def0d4c61ecd22a7432699f7179871d4a4e20f2..fc0e8ecea086bf667ad6865050b6cbc41bbf1594 100644 --- a/modules/gui/qt/playlist/qml/PlaylistListView.qml +++ b/modules/gui/qt/playlist/qml/PlaylistListView.qml @@ -61,18 +61,6 @@ Widgets.NavigableFocusScope { drop.accept(Qt.IgnoreAction) } - function sortPL(key) { - if (mainPlaylistController.sortKey !== key) { - mainPlaylistController.setSortOrder(PlaylistControllerModel.SORT_ORDER_ASC) - mainPlaylistController.setSortKey(key) - } - else { - mainPlaylistController.switchSortOrder() - } - - mainPlaylistController.sort() - } - PlaylistOverlayMenu { id: overlayMenu anchors.fill: parent diff --git a/modules/gui/qt/playlist/qml/PlaylistOverlayMenu.qml b/modules/gui/qt/playlist/qml/PlaylistOverlayMenu.qml index 01d3f89bff19af9c3d41b6875ebc592e80bf006f..37a5f6623655a85fd489b21b8ed59e8c99e9157e 100644 --- a/modules/gui/qt/playlist/qml/PlaylistOverlayMenu.qml +++ b/modules/gui/qt/playlist/qml/PlaylistOverlayMenu.qml @@ -199,7 +199,7 @@ Widgets.OverlayMenu { Action { id: sortTitleAction text: i18n.qtr("Title") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_TITLE readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -208,7 +208,7 @@ Widgets.OverlayMenu { Action { id: sortDurationAction text: i18n.qtr("Duration") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_DURATION readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -217,7 +217,7 @@ Widgets.OverlayMenu { Action { id: sortArtistAction text: i18n.qtr("Artist") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_ARTIST readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -226,7 +226,7 @@ Widgets.OverlayMenu { Action { id: sortAlbumAction text: i18n.qtr("Album") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_ALBUM readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -235,7 +235,7 @@ Widgets.OverlayMenu { Action { id: sortAlbumArtistAction text: i18n.qtr("Album Artist") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_ALBUM_ARTIST readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -244,7 +244,7 @@ Widgets.OverlayMenu { Action { id: sortGenreAction text: i18n.qtr("Genre") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_GENRE readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -253,7 +253,7 @@ Widgets.OverlayMenu { Action { id: sortDateAction text: i18n.qtr("Date") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_DATE readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -262,7 +262,7 @@ Widgets.OverlayMenu { Action { id: sortTrackNumberAction text: i18n.qtr("Track Number") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_TRACK_NUMBER readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -271,7 +271,7 @@ Widgets.OverlayMenu { Action { id: sortURLAction text: i18n.qtr("URL") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_URL readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) @@ -280,7 +280,7 @@ Widgets.OverlayMenu { Action { id: sortRatingAction text: i18n.qtr("Rating") - onTriggered: root.sortPL(key) + onTriggered: mainPlaylistController.sort(key) readonly property int key: PlaylistControllerModel.SORT_KEY_RATING readonly property string marking: sortOrderMarkRetriever(key) readonly property bool tickMark: (key === mainPlaylistController.sortKey) diff --git a/modules/gui/qt/playlist/qml/PlaylistToolbar.qml b/modules/gui/qt/playlist/qml/PlaylistToolbar.qml index 44be0441d72888ab815dbe1a98e4f5e25a085986..6a3c4fdf8b07016661b259b89c7dccfce17a7002 100644 --- a/modules/gui/qt/playlist/qml/PlaylistToolbar.qml +++ b/modules/gui/qt/playlist/qml/PlaylistToolbar.qml @@ -102,7 +102,7 @@ Widgets.NavigableFocusScope { listWidth: VLCStyle.widthSortBox onSortSelected: { - root.sortPL(modelData.criteria) + mainPlaylistController.sort(modelData.criteria) } colors: playlistToolbar.colors