summaryrefslogtreecommitdiff
path: root/plugins
diff options
authorBrandon Schaefer <schbra02@evergreen.edu>2011-10-12 09:32:33 +0100
committerNeil Jagdish Patel <neil.patel@canonical.com>2011-10-12 09:32:33 +0100
commit4c038697d58def52daca184fe03428aca99b7c77 (patch)
treee46f6c6cbb33edb94571e02f919047e2047b8698 /plugins
parent7cd6e273a42d3342da58c4fdb8b5887cc5626dcc (diff)
parent6faf547eb757c6eb097a4bf6e20c63c95e0b7a66 (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)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/unityshell/src/DashView.cpp2
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();