I'm using QT 3.3.1 and have a main form that has a QListView that will continually have QListViewItems added to it with the top being the first one added and the bottom being the last one added. What I want to do is have the QListView stay at the bottom of the list. I've tried to use QListView::setCurrentItem on the last item, but that doesn't bring the QListView to the bottom, it just highlights the last QListViewItem. I've also tried to use QListView::ensureItemVisible, but after a few seconds, the refresh boggs down quite a bit to the point where the program essentially locks up. After taking a quick look at the code, it seems as though ::ensureItemVisible starts at the top and moves to the selected item and after getting a large number of items, this becomes horribly inefficient. Is there some sort of property that I can set that will cause the QListView to keep the scroll bar at the bottom of the list as things get added?

If there's any needed information that I've forgotten to provide, please feel free to ask.

Thanks in advance.

PS - I posted this over at the old board as well because I was having login trouble over here. Sorry for the double posting if you read this here and there.