1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Encodes property names properly in project.godot

This commit is contained in:
Haoyu Qiu
2019-12-20 10:03:15 +08:00
parent 2a4c528d06
commit e7e095da3f
5 changed files with 18 additions and 23 deletions

View File

@@ -1530,9 +1530,6 @@ 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);