Allow docks to be closed

This commit is contained in:
kit 2023-10-28 10:13:12 -04:00
parent d2f9245ddc
commit 860bff926e
5 changed files with 117 additions and 27 deletions

View file

@ -87,12 +87,12 @@ Button *EditorPlugin::add_control_to_bottom_panel(Control *p_control, const Stri
void EditorPlugin::add_control_to_dock(DockSlot p_slot, Control *p_control, const Ref<Shortcut> &p_shortcut) {
ERR_FAIL_NULL(p_control);
EditorDockManager::get_singleton()->add_control_to_dock(EditorDockManager::DockSlot(p_slot), p_control, String(), p_shortcut);
EditorDockManager::get_singleton()->add_dock(p_control, String(), EditorDockManager::DockSlot(p_slot), p_shortcut);
}
void EditorPlugin::remove_control_from_docks(Control *p_control) {
ERR_FAIL_NULL(p_control);
EditorDockManager::get_singleton()->remove_control_from_dock(p_control);
EditorDockManager::get_singleton()->remove_dock(p_control);
}
void EditorPlugin::remove_control_from_bottom_panel(Control *p_control) {