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
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