Drag & Drop: Eat the DragMove event as soon as the Drop event has an event handler.

[GB.QT4]
* BUG: Drag & Drop: Eat the DragMove event as soon as the Drop event has an event handler.

[GB.QT5]
* BUG: Drag & Drop: Eat the DragMove event as soon as the Drop event has an event handler.
This commit is contained in:
Benoît Minisini 2022-07-23 11:26:31 +02:00
parent 21d9bd178e
commit 077c798f89

View file

@ -3191,6 +3191,9 @@ bool CWidget::eventFilter(QObject *widget, QEvent *event)
break;
}
if (GB.CanRaise(control, EVENT_Drop))
return true;
goto __NEXT;
}