// Lazy loading didn't work for children, even before the async change, not sure why
// TODO figure out if it can be fixed
// Enableing this for non-root makes it never fetch more.
- if (node == rootItem)
+ // TODO this breaks filtering on large sets
+ // With this scrolling would activate loading more
+ // If a filter finds few in the loaded set it will not request more
+ // even if it should.
+ if (false && node == rootItem)
{
delayFetchTimer.start(0);
delayedFetchNode = node;