Stop popup release timeout on click.

This commit is contained in:
bruvzg 2024-08-12 19:35:02 +03:00
parent 39fc116c5f
commit 7f6c14522c
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

View file

@ -589,6 +589,7 @@ void PopupMenu::_input_from_window_internal(const Ref<InputEvent> &p_event) {
// This allows for opening the popup and triggering an action in a single mouse click.
if (button_idx == MouseButton::LEFT || initial_button_mask.has_flag(mouse_button_to_mask(button_idx))) {
if (b->is_pressed()) {
during_grabbed_click = false;
is_scrolling = is_layout_rtl() ? b->get_position().x < item_clickable_area.position.x : b->get_position().x > item_clickable_area.size.width;
if (!item_clickable_area.has_point(b->get_position())) {