diff options
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index a41444a27f..d99726c57c 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -123,8 +123,9 @@ EditorAbout::EditorAbout() { hbc->add_child(_logo); String hash = String(VERSION_HASH); - if (hash.length() != 0) + if (hash.length() != 0) { hash = "." + hash.left(9); + } Label *about_text = memnew(Label); about_text->set_v_size_flags(Control::SIZE_SHRINK_CENTER); |