summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2018-11-27 08:45:52 +0200
committerGitHub <noreply@github.com>2018-11-27 08:45:52 +0200
commit96ba154f68c89ea359f4f30c65a7c335e90c72d8 (patch)
tree4b6479b6896fa39b69a6bdd4ae528d317a63f5b8
parentd1a9e99f624e383719080426ea19f94fbff67bc7 (diff)
downloadmidori-git-96ba154f68c89ea359f4f30c65a7c335e90c72d8.tar.gz
Don't consume the tab's focus in event (#185)
WebKit needs to handle focus events to update the visibility of the cursor. Fixes: #181
-rw-r--r--core/tab.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tab.vala b/core/tab.vala
index 10008cdc..6b207771 100644
--- a/core/tab.vala
+++ b/core/tab.vala
@@ -109,7 +109,7 @@ namespace Midori {
if (display_uri != uri) {
load_uri (display_uri);
}
- return true;
+ return base.focus_in_event (event);
}
void update_progress (ParamSpec pspec) {