Qt 6.11 is out! See what's new in the release
blog
Recursion in QML
QML and Qt Quick
2
Posts
2
Posters
2.0k
Views
1
Watching
-
I have element with recursion
@
//MyList.qml
Item {
Component {
id: myDelegate
Rectangle {
//---
MyList {
//---
}
}
}ListView { delegate: myDelegate // --- }}
@
Because of this application falls
Can I fix it? -
Hi,
See "this":http://qt-project.org/forums/viewthread/4881/. Hoping this discussion too doesnot get into Recursion ;)