diff options
| author | Brandon Schaefer <schbra02@evergreen.edu> | 2011-10-12 09:32:33 +0100 |
|---|---|---|
| committer | Neil Jagdish Patel <neil.patel@canonical.com> | 2011-10-12 09:32:33 +0100 |
| commit | 4c038697d58def52daca184fe03428aca99b7c77 (patch) | |
| tree | e46f6c6cbb33edb94571e02f919047e2047b8698 | |
| parent | 7cd6e273a42d3342da58c4fdb8b5887cc5626dcc (diff) | |
| parent | 6faf547eb757c6eb097a4bf6e20c63c95e0b7a66 (diff) | |
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
(bzr r1715)
| -rw-r--r-- | plugins/unityshell/src/DashView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/unityshell/src/DashView.cpp b/plugins/unityshell/src/DashView.cpp index af134d122..65548ec62 100644 --- a/plugins/unityshell/src/DashView.cpp +++ b/plugins/unityshell/src/DashView.cpp @@ -943,7 +943,7 @@ Area* DashView::FindKeyFocusArea(unsigned int key_symbol, { return this; } - else if (direction == KEY_NAV_NONE) + else if (direction == KEY_NAV_NONE || search_bar_->im_active) { // then send the event to the search entry return search_bar_->text_entry(); |
