mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
playlist catalog: sort independently from file browser
Allow independent sorting of playlists in the playlist catalog, using the context menu. You may want to usually sort playlists by their date (modified), but sort audio tracks alphabetically. This is now possible without having to constantly adjust a setting. The fact that 'Sort Files' applied to both the file browser and playlist catalog seems more like a side effect of the implementation, rather than behavior that is wanted. Additionally, the 'By Type' sorting makes no sense when only a single type is displayed. Since many of the other File View settings don't apply to the playlist catalog, hide the menu there. Change-Id: Ic35038015d0860998ae117f472ce23ce3bc80cfa
This commit is contained in:
parent
6e06319988
commit
4346a1e8e7
10 changed files with 62 additions and 7 deletions
|
|
@ -682,6 +682,7 @@ struct user_settings
|
|||
bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */
|
||||
int sort_dir; /* 0=alpha, 1=date (old first), 2=date (new first) */
|
||||
int sort_file; /* 0=alpha, 1=date, 2=date (new first), 3=type */
|
||||
int sort_playlists; /* in playlist catalog 0=alpha, 1=date, 2=date (new first) */
|
||||
int interpret_numbers; /* true=strnatcmp, false=strcmp */
|
||||
|
||||
/* power settings */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue