Unverified Commit 3a59c24b by Rémi Verschelde Committed by GitHub

Merge pull request #39150 from dreamsComeTrue/project-manager-grab-focus-on-enter

Grabbing focus on ProjectList after clicking an item.
parents 9043605a 1ec8f593
......@@ -916,6 +916,8 @@ public:
icon = nullptr;
icon_needs_reload = true;
hover = false;
set_focus_mode(FocusMode::FOCUS_ALL);
}
void set_is_favorite(bool fav) {
......@@ -1739,6 +1741,10 @@ void ProjectList::_panel_input(const Ref<InputEvent> &p_ev, Node *p_hb) {
select_project(clicked_index);
}
if (_selected_project_keys.has(clicked_project.project_key)) {
clicked_project.control->grab_focus();
}
emit_signal(SIGNAL_SELECTION_CHANGED);
if (!mb->get_control() && mb->is_doubleclick()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment