From 320bfeb81958fa65e8edb3d166d2e3383dab9184 Mon Sep 17 00:00:00 2001 From: Jordyfel Date: Thu, 15 Jan 2026 00:56:16 +0200 Subject: [PATCH] Fix project manager drawing focus on right click --- editor/project_manager/project_list.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/project_manager/project_list.cpp b/editor/project_manager/project_list.cpp index 6c8741e283c..a12e5a2ddca 100644 --- a/editor/project_manager/project_list.cpp +++ b/editor/project_manager/project_list.cpp @@ -1295,6 +1295,9 @@ void ProjectList::_select_project_range(int p_begin, int p_end) { void ProjectList::select_project(int p_index, bool p_hide_focus) { // This method keeps only one project selected. _clear_project_selection(); + + Item &item = _projects.write[p_index]; + item.control->grab_focus(p_hide_focus); _select_project_nocheck(p_index, p_hide_focus); }