1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

VerticalTabs: Set scrolling per pixel

This commit is contained in:
David Rosca 2018-02-02 12:00:52 +01:00
parent ebd2b6da51
commit fc9f88ae67
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8

View File

@ -37,6 +37,7 @@ TabTreeView::TabTreeView(QWidget* parent)
setDropIndicatorShown(true); setDropIndicatorShown(true);
setAllColumnsShowFocus(true); setAllColumnsShowFocus(true);
setMouseTracking(true); setMouseTracking(true);
setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
setIndentation(0); setIndentation(0);
m_delegate = new TabTreeDelegate(this); m_delegate = new TabTreeDelegate(this);