Auto save on comma too

This commit is contained in:
M66B
2023-02-16 21:59:49 +01:00
parent 34f3b123e0
commit bccb6e7ec1

View File

@@ -2332,6 +2332,7 @@ public class Helper {
static boolean isEndChar(char c) {
return (c == '.' /* Latin */ ||
c == '。' /* Chinese */ ||
c == ',' ||
c == ':' || c == ';' ||
c == '?' || c == '!');
}