Merge lp:~artfwo/unity/unity-fixes into lp:unity

Proposed by Artem Popov
Status: Merged
Approved by: Neil J. Patel
Approved revision: no longer in the source branch.
Merged at revision: 928
Proposed branch: lp:~artfwo/unity/unity-fixes
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
src/Launcher.cpp (+1/-1)
To merge this branch: bzr merge lp:~artfwo/unity/unity-fixes
Reviewer Review Type Date Requested Status
Neil J. Patel Pending
Review via email: mp+52362@code.launchpad.net

Description of the change

Partially fixes bug 727840

To post a comment you must log in.
Revision history for this message
Neil J. Patel (njpatel) wrote :

Macslow says this makes sense, who am I to argue? Approved and merged, thank you :)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Launcher.cpp'
2--- src/Launcher.cpp 2011-03-01 11:25:44 +0000
3+++ src/Launcher.cpp 2011-03-07 03:17:24 +0000
4@@ -2688,7 +2688,7 @@
5
6 // down (move selection down and unfold launcher if needed)
7 case NUX_VK_DOWN:
8- if (_current_icon_index < _model->Size ())
9+ if (_current_icon_index < _model->Size () - 1)
10 {
11 _current_icon_index++;
12 NeedRedraw ();