https://bugs.kde.org/show_bug.cgi?id=480538
--- Comment #2 from Vlad Zahorodnii <vlad.zahorod...@kde.org> --- /*! Handle \a event on behalf of this delivery agent's window or subscene. */ void QQuickDeliveryAgentPrivate::handleMouseEvent(QMouseEvent *event) { Q_Q(QQuickDeliveryAgent); // We generally don't want OS-synthesized mouse events, because Qt Quick does its own touch->mouse synthesis. // But if the platform converts long-press to right-click, it's ok to react to that, // unless the user has opted out by setting QT_QUICK_ALLOW_SYNTHETIC_RIGHT_CLICK=0. if (event->source() == Qt::MouseEventSynthesizedBySystem && !(event->button() == Qt::RightButton && allowSyntheticRightClick())) { event->accept(); return; } Qt has this code that accepts all button release events -- You are receiving this mail because: You are watching all bug changes.