Merge pull request #1687 from Bnyro/master

Move the playlist order to the instance prefs
This commit is contained in:
Bnyro 2022-10-29 15:41:53 +02:00 committed by GitHub
commit bfe16ddd27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 12 deletions

View File

@ -106,6 +106,14 @@
app:key="trending_layout"
app:title="@string/trending_layout" />
<ListPreference
android:defaultValue="recent"
android:entries="@array/playlistSortingOptions"
android:entryValues="@array/playlistSortingOptionsValues"
android:icon="@drawable/ic_filter"
app:key="playlists_order"
app:title="@string/playlists_order" />
</PreferenceCategory>
</PreferenceScreen>

View File

@ -71,16 +71,4 @@
</PreferenceCategory>
<PreferenceCategory app:title="@string/misc">
<ListPreference
android:defaultValue="recent"
android:entries="@array/playlistSortingOptions"
android:entryValues="@array/playlistSortingOptionsValues"
android:icon="@drawable/ic_filter"
app:key="playlists_order"
app:title="@string/playlists_order" />
</PreferenceCategory>
</PreferenceScreen>