Markdown set to off by default (Fixes #412)
This commit is contained in:
parent
6567c5e6c7
commit
7496a88dcd
@ -8,7 +8,7 @@ Improvements 🙌:
|
|||||||
-
|
-
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
-
|
- Markdown set to off by default (#412)
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
- Passphrase does not match (Export room keys) (#644)
|
- Passphrase does not match (Export room keys) (#644)
|
||||||
|
@ -576,7 +576,7 @@ class VectorPreferences @Inject constructor(private val context: Context) {
|
|||||||
* @return true if the markdown is enabled
|
* @return true if the markdown is enabled
|
||||||
*/
|
*/
|
||||||
fun isMarkdownEnabled(): Boolean {
|
fun isMarkdownEnabled(): Boolean {
|
||||||
return defaultPrefs.getBoolean(SETTINGS_ENABLE_MARKDOWN_KEY, true)
|
return defaultPrefs.getBoolean(SETTINGS_ENABLE_MARKDOWN_KEY, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
android:title="@string/settings_send_typing_notifs" />
|
android:title="@string/settings_send_typing_notifs" />
|
||||||
|
|
||||||
<im.vector.riotx.core.preference.VectorSwitchPreference
|
<im.vector.riotx.core.preference.VectorSwitchPreference
|
||||||
android:defaultValue="true"
|
android:defaultValue="false"
|
||||||
android:key="SETTINGS_ENABLE_MARKDOWN_KEY"
|
android:key="SETTINGS_ENABLE_MARKDOWN_KEY"
|
||||||
android:summary="@string/settings_send_markdown_summary"
|
android:summary="@string/settings_send_markdown_summary"
|
||||||
android:title="@string/settings_send_markdown" />
|
android:title="@string/settings_send_markdown" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user