From 36d983a08b75039e456eb233548ca96a24627e07 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sat, 14 Jul 2007 22:12:07 +0200 Subject: [PATCH] fix broken compile from new keyboard_bind() Signed-off-by: Mikael Magnusson --- openbox/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/config.c b/openbox/config.c index 2cdf1fb2..5e6c3ff3 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -805,7 +805,7 @@ static void bind_default_keyboard() }; for (it = binds; it->key; ++it) { GList *l = g_list_append(NULL, g_strdup(it->key)); - keyboard_bind(l, actions_parse_string(it->actname)); + keyboard_bind(l, actions_parse_string(it->actname), TRUE); } } -- 2.34.1