Comment 2 for bug 269427

Revision history for this message
Michael Kolodziej (michaelko) wrote :

I already wrote my observations on this bug on the forum some weeks, ago.
Here might be a better place, so I write them here again.
The browse-view mode becomes empty when you don't click on the first column, but on one of the others. It doesn't matter if it is the ../ entry or any other.
I guess it is because of line 299 in wtracktableview.cpp
setRootIndex(index); //Browse to that directory
I tried:
setRootIndex(index.sibling(index.row(),0));
which works better. The view doesn't get empty anymore, but if you click an other column than the first one, the next view will have a harmless ./ entry. That's the best I could do with my poor C++ and Qt knowledge :)
ciao