Merge pull request #44233 from YeldhamDev/popupmenu_circle_back

Re-add circle back scrolling to 'PopupMenu'
This commit is contained in:
Rémi Verschelde
2020-12-10 11:16:38 +01:00
committed by GitHub

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;