summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoommetee Ketson <poommetee@protonmail.com>2017-09-04 20:07:33 +0700
committerPoommetee Ketson <poommetee@protonmail.com>2017-09-04 20:07:33 +0700
commit391399dcd09943907a66fcf4807e5d3286a46b84 (patch)
tree8ff6d9ad3a51da1eddfbec7ee54ad71287825670
parent6d233c651b21ecaef78fbb20d0365a22919b72b1 (diff)
EditorAbout: fix names being selectable
-rw-r--r--editor/editor_about.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp
index 6d2bf10a7d..a48e6c9057 100644
--- a/editor/editor_about.cpp
+++ b/editor/editor_about.cpp
@@ -77,7 +77,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const List<St
il->set_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) {