We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e95b832 commit 028f9abCopy full SHA for 028f9ab
libaegisub/ass/dialogue_parser.cpp
@@ -185,7 +185,7 @@ class WordSplitter {
185
bool valid = true;
186
for (size_t k = 0; k < tokens[j].length; k++) {
187
char c = text[dpos + k];
188
- if (!((c >= '0' && c <= '9') || c == '.' || c == '-' || c == 'e')) {
+ if (!((c >= '0' && c <= '9') || c == '.' || c == '+' || c == '-' || c == 'e' || c == 'E')) {
189
valid = false;
190
}
191
0 commit comments