1
0
Fork 0

Merge pull request #113339 from aaronp64/bottom_dock_popup

Fix bottom panel dock layout popup position
This commit is contained in:
Rémi Verschelde 2025-12-16 11:26:37 +01:00
commit 318aeded6a
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void EditorDockManager::_dock_container_popup(int p_tab_idx, TabContainer *p_doc
// Right click context menu.
dock_context_popup->set_dock(hovered_dock);
dock_context_popup->set_position(p_dock_container->get_tab_bar()->get_screen_position() + p_dock_container->get_local_mouse_position());
dock_context_popup->set_position(p_dock_container->get_tab_bar()->get_screen_position() + p_dock_container->get_tab_bar()->get_local_mouse_position());
dock_context_popup->popup();
}