diff --git a/meson.build b/meson.build index 8a9162bd..ff5fb2b3 100644 --- a/meson.build +++ b/meson.build @@ -129,7 +129,6 @@ config_h = configure_file(output: 'config.h', configuration: header_conf) nk_options = [ 'bindings=true', - 'xdg-theme=true', 'git-work-tree=@0@'.format(meson.source_root()), ] nk = subproject('libnkutils', default_options: nk_options) diff --git a/source/keyb.c b/source/keyb.c index c30b1d8c..9de5829b 100644 --- a/source/keyb.c +++ b/source/keyb.c @@ -448,7 +448,9 @@ gboolean parse_keys_abe(NkBindings *bindings) { entry = strtok_r(NULL, sep, &sp)) { if (!nk_bindings_add_binding(bindings, b->scope, entry, binding_check_action, binding_trigger_action, - GUINT_TO_POINTER(b->id), NULL, &error)) { + GUINT_TO_POINTER(b->id), NULL, + NK_BINDINGS_ADD_FLAG_NONE, + &error)) { if (error->code == NK_BINDINGS_ERROR_ALREADY_REGISTERED && error->domain == NK_BINDINGS_ERROR) { char *str = g_markup_printf_escaped( @@ -485,7 +487,9 @@ gboolean parse_keys_abe(NkBindings *bindings) { for (gsize j = 1; j < G_N_ELEMENTS(mouse_default_bindings); ++j) { nk_bindings_add_binding(bindings, i, mouse_default_bindings[j], binding_check_action, binding_trigger_action, - GSIZE_TO_POINTER(j), NULL, NULL); + GSIZE_TO_POINTER(j), NULL, + NK_BINDINGS_ADD_FLAG_NONE, + NULL); } } diff --git a/subprojects/libnkutils b/subprojects/libnkutils index 09ca429c..72bd7fb0 160000 --- a/subprojects/libnkutils +++ b/subprojects/libnkutils @@ -1 +1 @@ -Subproject commit 09ca429c08530ddb50ba1029f98ca14da7b0b7fa +Subproject commit 72bd7fb07f627a864e724639eea9fab6cccbd77c