Summary: | Activating the "Show tooltips" option doesn't work | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Myriam Schweingruber <myriam> |
Component: | Playlist/Playlist Layout Editor | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | nhn |
Priority: | NOR | ||
Version: | 2.3.1-GIT | ||
Target Milestone: | 2.3.2 | ||
Platform: | Unlisted Binaries | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 2.3.2 | |
Sentry Crash Report: |
Description
Myriam Schweingruber
2010-08-26 10:14:35 UTC
commit cb93a4df59e4bb15fc1c4d7e3e93f8e5be6ae9fb Author: Nikolaj Hald Nielsen <nhn@kde.org> Date: Thu Aug 26 21:17:39 2010 +0200 Revert "Mouse tracking is not needed in the pretty list view" as it _is_ needed for the playlist tooltips! ;-) This reverts commit d5133e67a81a1f0fe65c01be9c0b3614ea566ec8. BUG: 249086 diff --git a/src/playlist/view/listview/PrettyListView.cpp b/src/playlist/view/listview/PrettyListView.cpp index 4be07b6..ca3d580 100644 --- a/src/playlist/view/listview/PrettyListView.cpp +++ b/src/playlist/view/listview/PrettyListView.cpp @@ -88,8 +88,12 @@ Playlist::PrettyListView::PrettyListView( QWidget* parent ) setDropIndicatorShown( false ); // we draw our own drop indicator setEditTriggers ( SelectedClicked | EditKeyPressed ); setAutoScroll( true ); + setVerticalScrollMode( ScrollPerPixel ); + setMouseTracking( true ); + + // Rendering adjustments setFrameShape( QFrame::NoFrame ); setAlternatingRowColors( true) ; |