Change defult list mode to grid

This commit is contained in:
Koitharu
2022-06-24 13:56:27 +03:00
parent 8d962516f4
commit cc6bbc9869

View File

@@ -40,7 +40,7 @@ class AppSettings(context: Context) {
get() = Collections.unmodifiableSet(remoteSources)
var listMode: ListMode
get() = prefs.getEnumValue(KEY_LIST_MODE, ListMode.DETAILED_LIST)
get() = prefs.getEnumValue(KEY_LIST_MODE, ListMode.GRID)
set(value) = prefs.edit { putEnumValue(KEY_LIST_MODE, value) }
var defaultSection: AppSection