tringUtil::toCapitalized() will now capitalize characters following apostrophes and quotation marks

This commit is contained in:
Leon Styhre 2024-07-16 21:25:08 +02:00
parent 7ea52c13a5
commit b067481f3f

View file

@ -570,7 +570,7 @@ namespace Utils
}
if (chr == " " || chr == "-" || chr == "\n" || chr == "\r" || chr == "\t" ||
chr == "(" || chr == "[")
chr == "(" || chr == "[" || chr == "'" || chr == "\"")
capitalize = true;
}