https://bugs.kde.org/show_bug.cgi?id=472114
Fushan Wen <qydwhotm...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |qydwhotm...@gmail.com --- Comment #4 from Fushan Wen <qydwhotm...@gmail.com> --- See also https://bugreports.qt.io/browse/QTBUG-92820?jql=text%20~%20%22qquickwidget%20signal%22 The problem exists in the connection. QQuickItem::implicitWidthChanged is never sent to the backend. ``` connect(d->quickWidget->rootObject(), &QQuickItem::implicitWidthChanged, this, [this]() { const int rootImplicitWidth = d->quickWidget->rootObject()->property("implicitWidth").toInt(); if (rootImplicitWidth != 0) { d->quickWidget->setFixedWidth(rootImplicitWidth); } else { d->quickWidget->setFixedWidth(240); } }); ``` -- You are receiving this mail because: You are watching all bug changes.