mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Auto save on (semi)colon and question/exclamation mark too
This commit is contained in:
@@ -670,7 +670,7 @@ public class FragmentCompose extends FragmentBase {
|
||||
char b = text.charAt(index - 1);
|
||||
|
||||
save = (auto_save_paragraph && c == '\n' && b != '\n') ||
|
||||
(auto_save_dot && Helper.isDot(c) && !Helper.isDot(b));
|
||||
(auto_save_dot && Helper.isEndChar(c) && !Helper.isEndChar(b));
|
||||
if (save)
|
||||
Log.i("Save=" + index);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user