From 96ba154f68c89ea359f4f30c65a7c335e90c72d8 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Tue, 27 Nov 2018 08:45:52 +0200 Subject: 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 --- core/tab.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.1