Merge lp:~brandontschaefer/unity/ibus_down_fix into lp:unity

Proposed by Brandon Schaefer
Status: Merged
Merged at revision: 1715
Proposed branch: lp:~brandontschaefer/unity/ibus_down_fix
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
plugins/unityshell/src/DashView.cpp (+1/-1)
To merge this branch: bzr merge lp:~brandontschaefer/unity/ibus_down_fix
Reviewer Review Type Date Requested Status
Neil J. Patel (community) Approve
Review via email: mp+79015@code.launchpad.net

Description of the change

When the ibus was active and you pressed down it would move the focus to the result grid. Now when the ibus is active it keeps the focus when your press down/up.

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

thanks!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/DashView.cpp'
2--- plugins/unityshell/src/DashView.cpp 2011-09-29 11:41:09 +0000
3+++ plugins/unityshell/src/DashView.cpp 2011-10-11 18:13:23 +0000
4@@ -943,7 +943,7 @@
5 {
6 return this;
7 }
8- else if (direction == KEY_NAV_NONE)
9+ else if (direction == KEY_NAV_NONE || search_bar_->im_active)
10 {
11 // then send the event to the search entry
12 return search_bar_->text_entry();