From: Benjamin Petrenko Date: Mon, 20 Jul 2015 11:48:33 +0000 (+0300) Subject: stop the focus from appearing to be on the input box after closing an external editor X-Git-Url: https://git.owens.tech/rss.xml/rss.xml/git?a=commitdiff_plain;h=63182c64fa87ffd8b4c07b0423d75e1d8b9af344;p=vimb.git stop the focus from appearing to be on the input box after closing an external editor --- 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;