aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports
diff options
context:
space:
mode:
authorLorn Potter <lorn.potter@gmail.com>2018-05-15 15:58:12 +1000
committerLorn Potter <lorn.potter@gmail.com>2018-05-15 18:41:53 +0000
commit5f4698c4e7952d64e78e3a06de5ac28d68415b19 (patch)
tree7ee371873e4206b13f1eaf60d48bb3ae9a10f8ca /src/imports
parent7e22af4bfdfd736e624321924eaae0e0d36940c7 (diff)
wasm: revert DirectConnection changes
Requires the wasm qthread changes in qtbase Change-Id: Ib55b683e0f752031a596ecdafcef22b7c8b9d494 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Diffstat (limited to 'src/imports')
-rw-r--r--src/imports/layouts/qquicklayout.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/imports/layouts/qquicklayout.cpp b/src/imports/layouts/qquicklayout.cpp
index d2bf0bbe8f..b3a5a2cfc8 100644
--- a/src/imports/layouts/qquicklayout.cpp
+++ b/src/imports/layouts/qquicklayout.cpp
@@ -781,12 +781,7 @@ void QQuickLayout::itemChange(ItemChange change, const ItemChangeData &value)
if (change == ItemChildAddedChange) {
Q_D(QQuickLayout);
QQuickItem *item = value.item;
-#ifndef QT_NO_THREAD
qmlobject_connect(item, QQuickItem, SIGNAL(baselineOffsetChanged(qreal)), this, QQuickLayout, SLOT(invalidateSenderItem()));
-#else
- // DirectConnection seems too quick for wasm here
- QObject::connect(item, SIGNAL(baselineOffsetChanged(qreal)), this, SLOT(invalidateSenderItem()));
-#endif
QQuickItemPrivate::get(item)->addItemChangeListener(this, changeTypes);
d->m_hasItemChangeListeners = true;
if (isReady())