diff options
Diffstat (limited to 'WebKit/qt/Api/qwebview.cpp')
-rw-r--r-- | WebKit/qt/Api/qwebview.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WebKit/qt/Api/qwebview.cpp b/WebKit/qt/Api/qwebview.cpp index 2defdbb..3daa045 100644 --- a/WebKit/qt/Api/qwebview.cpp +++ b/WebKit/qt/Api/qwebview.cpp @@ -826,8 +826,9 @@ bool QWebView::event(QEvent *e) || e->type() == QEvent::TouchEnd || e->type() == QEvent::TouchUpdate) { d->page->event(e); - if (e->isAccepted()) - return true; + + // Always return true so that we'll receive also TouchUpdate and TouchEnd events + return true; #endif } else if (e->type() == QEvent::Leave) d->page->event(e); |