Use per pixel scrolling on mac.

Fixes issue #738
This commit is contained in:
John Maguire 2010-09-13 18:33:18 +00:00
parent b61a05889a
commit 71bfbd9aaa

View File

@ -99,6 +99,10 @@ PlaylistView::PlaylistView(QWidget *parent)
setAlternatingRowColors(true);
setAttribute(Qt::WA_MacShowFocusRect, false);
#ifdef Q_OS_DARWIN
setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
#endif
}
void PlaylistView::SetItemDelegates(LibraryBackend* backend) {