From 391399dcd09943907a66fcf4807e5d3286a46b84 Mon Sep 17 00:00:00 2001 From: Poommetee Ketson Date: Mon, 4 Sep 2017 20:07:33 +0700 Subject: [PATCH] EditorAbout: fix names being selectable --- editor/editor_about.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 6d2bf10a7de..a48e6c90574 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -77,7 +77,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const Listset_same_column_width(true); il->set_auto_height(true); while (*names_ptr) { - il->add_item(String::utf8(*names_ptr++)); + il->add_item(String::utf8(*names_ptr++), NULL, false); } vbc->add_child(il); if (il->get_item_count() == 2) {