diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-24 08:30:32 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-24 08:30:32 (GMT) |
commit | 0580be5026ec66409259ea546454cbd11666bb75 (patch) | |
tree | 70d87d8841524755be511db5d97feb28d602a0dc /src/gui/kernel | |
parent | d8b81cad37e9477e609bbbedf0e666163bbbd813 (diff) | |
download | Qt-0580be5026ec66409259ea546454cbd11666bb75.zip Qt-0580be5026ec66409259ea546454cbd11666bb75.tar.gz Qt-0580be5026ec66409259ea546454cbd11666bb75.tar.bz2 |
Fix pressure "emulation"
Update the auto test for QTouchEvent to make sure the pressure is set to 1 for
Pressed/Moved/Stationary, but for 0 for Released.
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index 9a22fd5..ed6405a 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -5363,7 +5363,7 @@ void QApplicationPrivate::translateRawTouchEvent(QWidget *window, touchPoint.setStartNormalizedPos(previousTouchPoint.startNormalizedPos()); touchPoint.setLastNormalizedPos(previousTouchPoint.normalizedPos()); if (touchPoint.pressure() < qreal(0.)) - touchPoint.setPressure(qreal(0.)); + touchPoint.setPressure(qreal(1.)); d->appCurrentTouchPoints[touchPoint.id()] = touchPoint; break; } |