1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 02:02:10 +02:00

[SideBars] Don't override cursor on scrollbars in History/Bookmarks sidebars

This commit is contained in:
David Rosca 2014-05-03 15:23:07 +02:00
parent ad5dbe459c
commit 9a3382ee85
2 changed files with 2 additions and 2 deletions

View File

@ -189,7 +189,7 @@ void BookmarksTreeView::mouseMoveEvent(QMouseEvent* event)
cursor = Qt::PointingHandCursor; cursor = Qt::PointingHandCursor;
} }
} }
setCursor(cursor); viewport()->setCursor(cursor);
} }
} }

View File

@ -149,7 +149,7 @@ void HistoryTreeView::mouseMoveEvent(QMouseEvent* event)
cursor = Qt::PointingHandCursor; cursor = Qt::PointingHandCursor;
} }
} }
setCursor(cursor); viewport()->setCursor(cursor);
} }
} }