Support UTF-8 input action names

Fixes #26380

(cherry picked from commit a7430a9d06)
This commit is contained in:
Paul Trojahn 2019-03-07 23:17:40 +01:00 committed by Rémi Verschelde
parent 78a7f945e4
commit af3b157517

View file

@ -1542,6 +1542,9 @@ Error VariantParser::parse_tag_assign_eof(Stream *p_stream, int &line, String &r
} else if (c != '=') {
what += String::chr(c);
} else {
if (p_stream->is_utf8()) {
what.parse_utf8(what.ascii(true).get_data());
}
r_assign = what;
Token token;
get_token(p_stream, token, line, r_err_str);