summaryrefslogtreecommitdiffstats
path: root/src/input/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/frontend')
-rw-r--r--src/input/frontend/qinputaspect.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input/frontend/qinputaspect.cpp b/src/input/frontend/qinputaspect.cpp
index 04f4f9dd3..4c2b0e4de 100644
--- a/src/input/frontend/qinputaspect.cpp
+++ b/src/input/frontend/qinputaspect.cpp
@@ -122,6 +122,10 @@ void QInputAspect::loadInputDevicePlugins()
Qt3DInput::QInputDeviceIntegration *integration = QInputDeviceIntegrationFactory::create(key, QStringList());
if (integration != Q_NULLPTR) {
d->m_inputDeviceIntegrations.push_back(integration);
+ // Initialize will allow the InputDeviceIntegration to
+ // register their frontend / backend types,
+ // create their managers
+ // launch a thread to listen to the actual physical device....
integration->initialize(this);
}
}