aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorFelipe Seixas2017-10-20 06:24:00 -0400
committerFelipe Seixas2017-10-21 11:53:53 -0400
commit651246cbff5dbd079ab1bed3db65417799669a89 (patch)
treed353e08195ea0d92835dab35b2aaa6b3fa6ef38c /editor/editor_node.cpp
parent632459a46bcb321560152932bd401f750f98be1a (diff)
downloadgodot-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.cpp2
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"));