Add setting to change the grid row count for "Your playlists"

This commit is contained in:
vfsfitvnm
2022-06-17 19:34:38 +02:00
parent 698f0c63fb
commit 945677b9d1
5 changed files with 44 additions and 12 deletions

View File

@@ -27,6 +27,7 @@ class Preferences(holder: SharedPreferences) : SharedPreferences by holder {
var displayLikeButtonInNotification by preference("displayLikeButtonInNotification", false)
var persistentQueue by preference("persistentQueue", false)
var skipSilence by preference("skipSilence", false)
var yourPlaylistsGridRowCount by preference("yourPlaylistsGridRowCount", 2)
}
val Context.preferences: Preferences