summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2020-06-07 21:20:52 +0200
committerDaniel Carl <danielcarl@gmx.de>2020-06-07 21:20:52 +0200
commit319595e29120a7133f8fd64de0140d1e62315f5c (patch)
tree8d74bb782ac1f8c3eed9b731aa887eb94da0544e /src
parent3d08ccae0a15af1343b60b3ecc1838c1a8dcd7b2 (diff)
parent21126d29895b84f58cbf446d067b733e8cbae969 (diff)
Merge branch 'fix-i-crash' of https://github.com/mawww/vimb
Diffstat (limited to 'src')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index fa4c7d6..eda7deb 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -450,7 +450,7 @@ static VbResult normal_focus_last_active(Client *c, const NormalCmdInfo *info)
gboolean focused;
variant = ext_proxy_eval_script_sync(c, "vimb_input_mode_element.focus();");
- g_variant_get(variant, "(bs)", &focused);
+ g_variant_get(variant, "(bs)", &focused, NULL);
if (!focused) {
ext_proxy_focus_input(c);
}