Hi there! This simple pyqt example demonstrates the problem. Any ideas on a workaround?
import time app = QApplication(sys.argv) w = QListView() m = QStringListModel() m.setStringList([str(time.time()) for i in range(1000)]) w.setModel(m) w.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel) w.show() app.exec_()
_______________________________________________ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest