summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/input/evdevtouch
diff options
context:
space:
mode:
Diffstat (limited to 'src/platformsupport/input/evdevtouch')
-rw-r--r--src/platformsupport/input/evdevtouch/qevdevtouch.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/platformsupport/input/evdevtouch/qevdevtouch.cpp b/src/platformsupport/input/evdevtouch/qevdevtouch.cpp
index 08f9860ccf..a7502fbcc0 100644
--- a/src/platformsupport/input/evdevtouch/qevdevtouch.cpp
+++ b/src/platformsupport/input/evdevtouch/qevdevtouch.cpp
@@ -271,6 +271,7 @@ QEvdevTouchScreenHandler::QEvdevTouchScreenHandler(const QString &specification,
d->hw_pressure_max = absInfo.maximum;
}
}
+
char name[1024];
if (ioctl(m_fd, EVIOCGNAME(sizeof(name) - 1), name) >= 0) {
d->hw_name = QString::fromLocal8Bit(name);
@@ -452,9 +453,6 @@ void QEvdevTouchScreenData::processInputEvent(input_event *data)
}
addTouchPoint(contact, &combinedStates);
-
- if (contact.state == Qt::TouchPointReleased)
- it.remove();
}
// Now look for contacts that have disappeared since the last sync.
@@ -469,6 +467,15 @@ void QEvdevTouchScreenData::processInputEvent(input_event *data)
}
}
+ // Remove contacts that have just been reported as released.
+ it = m_contacts;
+ while (it.hasNext()) {
+ it.next();
+ Contact &contact(it.value());
+ if (contact.state == Qt::TouchPointReleased)
+ it.remove();
+ }
+
m_lastContacts = m_contacts;
if (!m_typeB && !m_singleTouch)
m_contacts.clear();