Re-add circle back scrolling to 'PopupMenu'

This commit is contained in:
Michael Alexsander 2020-12-09 13:25:00 -03:00
parent cf62289d24
commit e8e0abc331

View file

@ -232,7 +232,7 @@ void PopupMenu::_submenu_timeout() {
}
void PopupMenu::_gui_input(const Ref<InputEvent> &p_event) {
if (p_event->is_action("ui_down") && p_event->is_pressed() && mouse_over != items.size() - 1) {
if (p_event->is_action("ui_down") && p_event->is_pressed()) {
int search_from = mouse_over + 1;
if (search_from >= items.size()) {
search_from = 0;
@ -248,7 +248,7 @@ void PopupMenu::_gui_input(const Ref<InputEvent> &p_event) {
break;
}
}
} else if (p_event->is_action("ui_up") && p_event->is_pressed() && mouse_over != 0) {
} else if (p_event->is_action("ui_up") && p_event->is_pressed()) {
int search_from = mouse_over - 1;
if (search_from < 0) {
search_from = items.size() - 1;