Disable swipe-to-reply by default

Change-Id: Ifbbb264e83634857a69870be52c5973dfc909e10
This commit is contained in:
SpiritCroc 2020-08-28 10:25:18 +02:00
parent 8d6b141d8b
commit ef5c7d5511
2 changed files with 3 additions and 3 deletions

View File

@ -279,7 +279,7 @@ class VectorPreferences @Inject constructor(private val context: Context) {
}
fun swipeToReplyIsEnabled(): Boolean {
return defaultPrefs.getBoolean(SETTINGS_LABS_ENABLE_SWIPE_TO_REPLY, true)
return defaultPrefs.getBoolean(SETTINGS_LABS_ENABLE_SWIPE_TO_REPLY, false)
}
fun mergeUTDinTimeline(): Boolean {

View File

@ -35,7 +35,7 @@
<!--android:title="@string/settings_labs_enable_send_voice" />-->
<im.vector.app.core.preference.VectorSwitchPreference
android:defaultValue="true"
android:defaultValue="false"
android:key="SETTINGS_LABS_ENABLE_SWIPE_TO_REPLY"
android:title="@string/labs_swipe_to_reply_in_timeline" />
@ -52,4 +52,4 @@
android:title="@string/labs_show_unread_notifications_as_tab" />
<!--</im.vector.app.core.preference.VectorPreferenceCategory>-->
</androidx.preference.PreferenceScreen>
</androidx.preference.PreferenceScreen>