I have a QListView that displays square-shaped items. My problem is that when I scroll this list, it scrolls one entire row of squares at a time, and I think that doesn't look right. Instead, I would like the list to scroll 1 pixels or two at a time - i.e. smoothly. It's mostly a cosmetic change. Any idea how I would do that?
Ok I just found there's a property for that:
listView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
The other option, the default, is ScrollPerItem.