Stephen D'Angelo
Stephen D'Angelo
Something like this works in qmlscene, but not in qmlweb: ``` import QtQuick 2.0 Repeater { model: 1 delegate: Rectangle { width: 10 height: 10 color: "red" } } ```...
According to Qt documentation: http://doc.qt.io/qt-5/qabstractitemmodel.html#beginInsertRows The `endIndex` included in `beginInsert/RemoveRows` should be the last index that was inserted/removed. Currently, the QmlWeb implementation of `ListModel` passes the index AFTER the last...
Failing test added in #351.
We kind of have support for attached properties for the "Component.onCompleted" signal, but it's handled as a special case. I'm currently working on adding the ability for registered constructors to...
This builds off of #19 adding deep-subproperties support to property aliases. I haven't made any corresponding changes to the runtime, but I'll do that if this makes sense.
This is to help support: https://github.com/qmlweb/qmlweb/issues/297 Lots of tests fail, but I'm pretty sure that's just because all of the source is regenerated (though I believe still functionally equivalent). QmlWeb...