1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Mobile: Disable beta editor for now due to bugs that cannot be fixed

and crashes.

See https://discourse.joplinapp.org/t/11658/9?u=laurent
This commit is contained in:
Laurent Cozic
2020-10-29 16:42:47 +00:00
parent fd90a490c0
commit 8cfe4b0f82
2 changed files with 9 additions and 2 deletions

View File

@ -211,7 +211,9 @@ class NoteScreenComponent extends BaseScreenComponent {
};
this.useBetaEditor = () => {
return Setting.value('editor.beta') && Platform.OS !== 'android';
// Disable for now
return false;
// return Setting.value('editor.beta') && Platform.OS !== 'android';
};
this.takePhoto_onPress = this.takePhoto_onPress.bind(this);