diff options
| author | Felipe Seixas | 2017-10-20 06:24:00 -0400 |
|---|---|---|
| committer | Felipe Seixas | 2017-10-21 11:53:53 -0400 |
| commit | 651246cbff5dbd079ab1bed3db65417799669a89 (patch) | |
| tree | d353e08195ea0d92835dab35b2aaa6b3fa6ef38c /editor/editor_node.cpp | |
| parent | 632459a46bcb321560152932bd401f750f98be1a (diff) | |
| download | godot-651246cbff5dbd079ab1bed3db65417799669a89.tar.gz godot-651246cbff5dbd079ab1bed3db65417799669a89.tar.zst godot-651246cbff5dbd079ab1bed3db65417799669a89.zip | |
Fix drop-down size when resizing font #12207
Fixes Scene > Open Recent
Fixes ScriptEditor > File > Open Recent
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index f109cdddc..8c5f51658 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -308,6 +308,8 @@ void EditorNode::_notification(int p_what) { } _update_scene_tabs(); + recent_scenes->set_as_minsize(); + // debugger area if (ScriptEditor::get_singleton()->get_debugger()->is_visible()) bottom_panel->add_style_override("panel", gui_base->get_stylebox("BottomPanelDebuggerOverride", "EditorStyles")); |
