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

Fix and expose String::strip_escapes(), use it in LineEdit paste

Supersedes #27736.
This commit is contained in:
Rémi Verschelde
2019-05-31 15:27:53 +02:00
parent 29645c8147
commit af2c742f53
7 changed files with 21 additions and 23 deletions

View File

@@ -375,7 +375,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
while (I) {
I->get() = unescape_cmdline(I->get().strip_escapes());
I->get() = unescape_cmdline(I->get().strip_edges());
I = I->next();
}