From 63182c64fa87ffd8b4c07b0423d75e1d8b9af344 Mon Sep 17 00:00:00 2001 From: Benjamin Petrenko Date: Mon, 20 Jul 2015 14:48:33 +0300 Subject: [PATCH] stop the focus from appearing to be on the input box after closing an external editor --- src/input.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input.c b/src/input.c index 8b88254..00ca557 100644 --- a/src/input.c +++ b/src/input.c @@ -155,6 +155,7 @@ VbResult input_open_editor(void) /* disable the active element */ dom_editable_element_set_disable(active, true); + dom_clear_focus(vb.gui.webview); EditorData *data = g_slice_new0(EditorData); data->file = file_path; -- 2.20.1