浏览代码

Merge pull request #3338 from godotengine/kubecz3k-patch-1

Ability to hide  panel with scripts
Rémi Verschelde 9 年之前
父节点
当前提交
d4a2409334
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/editor/plugins/script_editor_plugin.cpp

+ 1 - 1
tools/editor/plugins/script_editor_plugin.cpp

@@ -2331,7 +2331,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) {
 
 	script_list = memnew( ItemList );
 	script_split->add_child(script_list);
-	script_list->set_custom_minimum_size(Size2(70,0));
+	script_list->set_custom_minimum_size(Size2(0,0));
 	script_split->set_split_offset(70);
 
 	tab_container = memnew( TabContainer );