mirror of https://github.com/godotengine/godot
Merge pull request #113775 from KoBeWi/waiting_for_DockTabContainer
Fix bottom panel pinning
This commit is contained in:
commit
f8ea55122a
|
|
@ -866,7 +866,7 @@ void EditorDockManager::focus_dock(EditorDock *p_dock) {
|
|||
}
|
||||
|
||||
if (!p_dock->is_open) {
|
||||
open_dock(p_dock);
|
||||
open_dock(p_dock, false);
|
||||
}
|
||||
|
||||
if (p_dock->dock_window) {
|
||||
|
|
@ -874,7 +874,11 @@ void EditorDockManager::focus_dock(EditorDock *p_dock) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!docks_visible && p_dock->get_parent() != EditorNode::get_bottom_panel()) {
|
||||
if (p_dock->get_parent() == EditorNode::get_bottom_panel()) {
|
||||
if (EditorNode::get_bottom_panel()->is_locked()) {
|
||||
return;
|
||||
}
|
||||
} else if (!docks_visible) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ public:
|
|||
void toggle_last_opened_bottom_panel();
|
||||
void set_expanded(bool p_expanded);
|
||||
void _theme_changed();
|
||||
bool is_locked() const { return lock_panel_switching; }
|
||||
|
||||
void set_bottom_panel_offset(int p_offset);
|
||||
int get_bottom_panel_offset();
|
||||
|
|
|
|||
Loading…
Reference in New Issue