Reverted the change where StringUtil::toCapitalized() would capitalize characters follow apostrophes

This commit is contained in:
Leon Styhre 2024-07-16 21:27:29 +02:00
parent b067481f3f
commit 5bea1dfb8b

View file

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