mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 12:00:03 +03:00
Switch prefered room preview types to best tested selection
Devs prefer this option and test this the most. Change-Id: I1a986597d539589e68c588d99074d32dd04e4833
This commit is contained in:
parent
4ad5062b1e
commit
2117f95290
2 changed files with 3 additions and 3 deletions
|
@ -1105,7 +1105,7 @@ class VectorPreferences @Inject constructor(
|
|||
|
||||
// SC addition
|
||||
private fun roomUnreadKind(key: String): Int {
|
||||
val default = RoomSummary.UNREAD_KIND_CONTENT
|
||||
val default = RoomSummary.UNREAD_KIND_ORIGINAL_CONTENT
|
||||
val kind = defaultPrefs.getString(key, default.toString())
|
||||
return try {
|
||||
Integer.parseInt(kind!!)
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
android:title="@string/settings_single_overview" />
|
||||
|
||||
<im.vector.app.core.preference.VectorListPreference
|
||||
android:defaultValue="1"
|
||||
android:defaultValue="2"
|
||||
android:entries="@array/room_unread_kind_entries"
|
||||
android:entryValues="@array/room_unread_kind_values"
|
||||
android:key="SETTINGS_ROOM_UNREAD_KIND_DM"
|
||||
|
@ -102,7 +102,7 @@
|
|||
android:title="@string/settings_room_unread_kind_dm" />
|
||||
|
||||
<im.vector.app.core.preference.VectorListPreference
|
||||
android:defaultValue="1"
|
||||
android:defaultValue="2"
|
||||
android:entries="@array/room_unread_kind_entries"
|
||||
android:entryValues="@array/room_unread_kind_values"
|
||||
android:key="SETTINGS_ROOM_UNREAD_KIND_GROUP"
|
||||
|
|
Loading…
Add table
Reference in a new issue