I'm using a custom model class in a QListView.
My model class implements also canFetchMore and fetchMore, so that it should load lazily the data.
But it seems like it is not working properly because every 2-3 or 4 fetchMore I get this error:
StdErr: QTreeView::rowsInserted internal representation of the model has been corrupted, resetting.
StdErr: QTreeView::rowsInserted internal representation of the model has been corrupted, resetting.
To copy to clipboard, switch view to plain text mode
Reading that error seems like the model sometimes has to load again all the previous data due to some fact that i don't know...
anyone know a way to avoid this error?
Bookmarks