diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-09-04 21:45:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 21:45:22 +0200 |
commit | f9d9e9099cd04a112598d65ac67a05eb78139e4a (patch) | |
tree | d3f79c727e1c433179d9beadb466603d4100e949 | |
parent | b295163d67910d62a52d0d8f17749d23d71b5047 (diff) | |
parent | 391399dcd09943907a66fcf4807e5d3286a46b84 (diff) |
Merge pull request #10961 from Noshyaar/pr-donor
EditorAbout: fix names being selectable
-rw-r--r-- | editor/editor_about.cpp | 2 |
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) { |