Merge pull request #25064 from homer666/itemlist-adjust-ui_select-precedence
ItemList: ignore `ui_select` action if Select Mode is not "Multi"
This commit is contained in:
commit
055456d5fc
1 changed files with 2 additions and 2 deletions
|
@ -715,9 +715,9 @@ void ItemList::_gui_input(const Ref<InputEvent> &p_event) {
|
|||
}
|
||||
} else if (p_event->is_action("ui_cancel")) {
|
||||
search_string = "";
|
||||
} else if (p_event->is_action("ui_select")) {
|
||||
} else if (p_event->is_action("ui_select") && select_mode == SELECT_MULTI) {
|
||||
|
||||
if (select_mode == SELECT_MULTI && current >= 0 && current < items.size()) {
|
||||
if (current >= 0 && current < items.size()) {
|
||||
if (items[current].selectable && !items[current].disabled && !items[current].selected) {
|
||||
select(current, false);
|
||||
emit_signal("multi_selected", current, true);
|
||||
|
|
Loading…
Reference in a new issue