diff options
Diffstat (limited to 'Source/WebKit/qt/Api/qwebview.cpp')
-rw-r--r-- | Source/WebKit/qt/Api/qwebview.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/WebKit/qt/Api/qwebview.cpp b/Source/WebKit/qt/Api/qwebview.cpp index 4a2d186a9..937d3bdca 100644 --- a/Source/WebKit/qt/Api/qwebview.cpp +++ b/Source/WebKit/qt/Api/qwebview.cpp @@ -703,7 +703,11 @@ bool QWebView::event(QEvent *e) #endif } else if (e->type() == QEvent::TouchBegin || e->type() == QEvent::TouchEnd - || e->type() == QEvent::TouchUpdate) { + || e->type() == QEvent::TouchUpdate +#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) + || e->type() == QEvent::TouchCancel +#endif + ) { d->page->event(e); // Always return true so that we'll receive also TouchUpdate and TouchEnd events |