Grabbing focus on ProjectList after clicking an item.
Fixes: #39012
(cherry picked from commit 1ec8f59397
)
This commit is contained in:
parent
9753181956
commit
982ab51f2f
|
@ -945,6 +945,8 @@ public:
|
|||
icon = NULL;
|
||||
icon_needs_reload = true;
|
||||
hover = false;
|
||||
|
||||
set_focus_mode(FocusMode::FOCUS_ALL);
|
||||
}
|
||||
|
||||
void set_is_favorite(bool fav) {
|
||||
|
@ -1728,6 +1730,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()) {
|
||||
|
|
Loading…
Reference in New Issue