diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-08 22:48:17 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-08 22:48:17 +0100 |
commit | 98131c0e3232d1812d02a7de8d4a68dee8090cb7 (patch) | |
tree | f2dec639a4d42526864cde91f3897b67f666bc63 | |
parent | 69fd2f3571d56e77e6cf8ed6fc6073f9bfb03b38 (diff) | |
parent | 0bde4a95e3dd1d064732ba1020b2fbea16d43976 (diff) |
Merge pull request #71068 from DarkMessiah/fix_about_godot
Fix UTF-8 encoding for copyright in About dialog
-rw-r--r-- | editor/editor_about.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index ae9abc638f..25bca2a099 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -153,8 +153,8 @@ EditorAbout::EditorAbout() { Label *about_text = memnew(Label); about_text->set_v_size_flags(Control::SIZE_SHRINK_CENTER); - about_text->set_text(String::utf8("\xc2\xa9 2014-present ") + TTR("Godot Engine contributors") + - "\n\xc2\xa9 2007-2014 Juan Linietsky, Ariel Manzur.\n"); + about_text->set_text(String::utf8("\xc2\xa9 2014-present ") + TTR("Godot Engine contributors") + "." + + String::utf8("\n\xc2\xa9 2007-2014 Juan Linietsky, Ariel Manzur.\n")); version_info_vbc->add_child(about_text); hbc->add_child(version_info_vbc); |