fix app list mode

This commit is contained in:
CherretGit
2025-10-18 18:46:40 +07:00
parent 786321d852
commit c094a072b8

View File

@@ -725,7 +725,7 @@ fun getAppsListMode(prefs : SharedPreferences) : String {
}
}
else {
return prefs.getString("applist", "")!!
return prefs.getString("app_list", "none")!!
}
return "none"
}
@@ -753,7 +753,7 @@ fun setAppsListMode(prefs: SharedPreferences, mode: String) {
}
}
else {
prefs.edit { putString("app-list", mode) }
prefs.edit { putString("app_list", mode) }
}
Log.d("App List", "Changed to $mode")
}