소스 검색

Merge pull request #10961 from Noshyaar/pr-donor

EditorAbout: fix names being selectable
Rémi Verschelde 8 년 전
부모
커밋
f9d9e9099c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      editor/editor_about.cpp

+ 1 - 1
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) {