Fix drop-down size when resizing font #12207
Fixes Scene > Open Recent Fixes ScriptEditor > File > Open Recent
This commit is contained in:
parent
632459a46b
commit
651246cbff
2 changed files with 4 additions and 0 deletions
|
@ -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"));
|
||||
|
|
|
@ -1169,6 +1169,8 @@ void ScriptEditor::_notification(int p_what) {
|
|||
|
||||
script_forward->set_icon(get_icon("Forward", "EditorIcons"));
|
||||
script_back->set_icon(get_icon("Back", "EditorIcons"));
|
||||
|
||||
recent_scripts->set_as_minsize();
|
||||
} break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue