Skip to content

qml: correct ListView.delayRemove assignation in TableViewDelegate

Fatih Uzunoğlu requested to merge fuzun/vlc:qml-correct-delayremove into master

ListView.delayRemove should apply to the delegate, which has id: delegate, and not the root. So the view knows which delegate instances it should not remove.

This was something I incorrectly used root.ListView.delayRemove instead of delegate.ListView.delayRemove, initially.

Now dragging and scrolling can be done at the same time.

Merge request reports