Comment 3 for bug 1416916

Revision history for this message
gigatropolis (gigatropolis) wrote :

I was playing with this out of curiosity and did find a fix that seemed to work. Just added this line in BtTreeFilterProxyModel::filterAcceptsRow:

```
   if (!child.isValid())
      return false;
```

   Lazy fix that seems to work if you want to try.

  Kregg,