summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Labzyuk <stanislav.labzyuk@gmail.com>2023-01-08 14:28:10 +0100
committerStanislav Labzyuk <stanislav.labzyuk@gmail.com>2023-01-08 16:15:26 +0100
commit0bde4a95e3dd1d064732ba1020b2fbea16d43976 (patch)
tree6ef313ede61a421b5b263d387496c6eb7213809b
parentfcba87e696d58912838d8a4a6987b10efa28e78f (diff)
Fix UTF-8 encoding for copyright in About dialog
-rw-r--r--editor/editor_about.cpp4
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);