Merge pull request #82924 from SaracenOne/rmb_breakpoint_menu_fix

Fix right-click menu position for the debugger breakpoint tree.
This commit is contained in:
Rémi Verschelde 2023-10-09 15:34:15 +02:00
commit 15d08c6adb
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -1605,7 +1605,7 @@ void ScriptEditorDebugger::_breakpoints_item_rmb_selected(const Vector2 &p_pos,
breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints in:") + " " + file, ACTION_DELETE_BREAKPOINTS_IN_FILE); breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints in:") + " " + file, ACTION_DELETE_BREAKPOINTS_IN_FILE);
breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints"), ACTION_DELETE_ALL_BREAKPOINTS); breakpoints_menu->add_icon_item(get_editor_theme_icon(SNAME("Remove")), TTR("Delete All Breakpoints"), ACTION_DELETE_ALL_BREAKPOINTS);
breakpoints_menu->set_position(breakpoints_tree->get_global_position() + p_pos); breakpoints_menu->set_position(get_screen_position() + get_local_mouse_position());
breakpoints_menu->popup(); breakpoints_menu->popup();
} }