Re: [Development] Reference cycles in QML

2013-08-16 Thread Thiago Macieira
On sexta-feira, 16 de agosto de 2013 11:33:57, Alan Alpert wrote: > Patches need to go to gerrit, even if they're not complete. Just > mention that it's not ready for submission in the commit message > (which can be amended once it is ready for submission). > > As well as being good practice, it's

[Development] Reference cycles in QML

2013-08-15 Thread David McFarland
I found that having dependency cycles in QML components causes the typeloader to get stuck with all blobs in a loading state (i.e. no useful diagnostics). This can be caused by something like this: A.qml QtObject { property B foo } B.qml: QtObject { property A f