EditorAbout: fix names being selectable
This commit is contained in:
parent
6d233c651b
commit
391399dcd0
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const List<St
|
||||||
il->set_same_column_width(true);
|
il->set_same_column_width(true);
|
||||||
il->set_auto_height(true);
|
il->set_auto_height(true);
|
||||||
while (*names_ptr) {
|
while (*names_ptr) {
|
||||||
il->add_item(String::utf8(*names_ptr++));
|
il->add_item(String::utf8(*names_ptr++), NULL, false);
|
||||||
}
|
}
|
||||||
vbc->add_child(il);
|
vbc->add_child(il);
|
||||||
if (il->get_item_count() == 2) {
|
if (il->get_item_count() == 2) {
|
||||||
|
|
Loading…
Reference in a new issue