summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRazah <33985414+icnikerazah@users.noreply.github.com>2018-01-03 18:47:38 +0300
committerRĂ©mi Verschelde <rverschelde@gmail.com>2018-01-03 17:10:07 +0100
commite3c9a7ed4f0b07a841e51b8bf2e92c370d21e33c (patch)
treee731b7f87e3120b03e6e86488e5dd1fd798979f5 /editor
parent2488aff93f93deda27c99cf4811986afeb973438 (diff)
Fix broken Info.plist after copyright update
Fixes #15293. + related misc fixes by @akien-mga.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_about.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp
index 1d6d933924..7fa4776141 100644
--- a/editor/editor_about.cpp
+++ b/editor/editor_about.cpp
@@ -131,7 +131,8 @@ EditorAbout::EditorAbout() {
Label *about_text = memnew(Label);
about_text->set_v_size_flags(Control::SIZE_SHRINK_CENTER);
- about_text->set_text(VERSION_FULL_NAME + hash + String::utf8("\n\xc2\xa9 2007-2018 Juan Linietsky, Ariel Manzur.\n\xc2\xa9 2014-2017 ") +
+ about_text->set_text(VERSION_FULL_NAME + hash +
+ String::utf8("\n\xc2\xa9 2007-2018 Juan Linietsky, Ariel Manzur.\n\xc2\xa9 2014-2018 ") +
TTR("Godot Engine contributors") + "\n");
hbc->add_child(about_text);