Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Amarok
Commits
73813af3
Commit
73813af3
authored
Jan 31, 2012
by
Bart Cerneels
Browse files
Fix PlaylistBrowser scroll w/ keyboard navigation.
BUG: 259791 FIXED-IN: 2.6
parent
eae396ee
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
73813af3
...
...
@@ -30,6 +30,7 @@ Version 2.6-Beta 1
"1.2 GB free" is shown instead of "85% used"; thicker capacity bar.
BUGFIXES:
* Fix scrollarea following keyboard navigation. (BR 259791)
* Fix crash when trying to save custom equalizer presets. (BR 286227)
* Fix crash due to my silly method order error. (BR 291968)
* Fix favored random track playing picking recent played songs (BR 244442)
...
...
src/browsers/playlistbrowser/PlaylistBrowserView.cpp
View file @
73813af3
...
...
@@ -349,6 +349,7 @@ PlaylistBrowserNS::PlaylistBrowserView::currentChanged( const QModelIndex &curre
{
Q_UNUSED
(
previous
)
emit
currentItemChanged
(
current
);
Amarok
::
PrettyTreeView
::
currentChanged
(
current
,
previous
);
}
void
...
...
src/browsers/playlistbrowser/PlaylistBrowserView.h
View file @
73813af3
...
...
@@ -57,6 +57,7 @@ protected:
virtual
bool
viewportEvent
(
QEvent
*
event
);
protected
slots
:
/** reimplemented to emit a signal */
void
currentChanged
(
const
QModelIndex
&
current
,
const
QModelIndex
&
previous
);
/** Used for executing default (first) action when Enter/Return/double click. */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment