Browse Source

Merge pull request #3394 from godotengine/wider-script-panel

Wider initial size of the panel with scripts
Rémi Verschelde 9 years ago
parent
commit
6e1b689b47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/editor/plugins/script_editor_plugin.cpp

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

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