summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-01-15 13:52:29 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-01-15 13:52:29 +0100
commitd4a2409334764f2b29503a93c505603ec122c8db (patch)
tree75ce4c5ff4971e9df9167bdda243d30c5a9c78ff
parentbbeac36cb59bfbec6cc14e2448093952f93a6355 (diff)
parentca0a6c4d59492510780f3a3e1eb61a041b9129b6 (diff)
Merge pull request #3338 from godotengine/kubecz3k-patch-1
Ability to hide panel with scripts
-rw-r--r--tools/editor/plugins/script_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp
index fc0d68b2f8..8adfe9d2cf 100644
--- a/tools/editor/plugins/script_editor_plugin.cpp
+++ b/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 );