From e80d7d2a910e02375d6cb8500dcd74c8ae22a5a9 Mon Sep 17 00:00:00 2001 From: kubecz3k Date: Wed, 20 Jan 2016 13:01:27 +0100 Subject: Wider initial size of the panel with scripts I believe it's size is now exactly the same how it was before commit that allowed to hide script panel entirely. I assume previously it was 140 wide because of 70px of minimal size + 70px of offset, so now when minimal size is 0 the offset need to be 140. --- tools/editor/plugins/script_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/editor/plugins') diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 1e16f32e6e..76e4af5f16 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/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); -- cgit v1.2.3