fix broken compile from new keyboard_bind()
authorMikael Magnusson <mikachu@comhem.se>
Sat, 14 Jul 2007 20:12:07 +0000 (22:12 +0200)
committerMikael Magnusson <mikachu@comhem.se>
Mon, 23 Jul 2007 00:02:49 +0000 (02:02 +0200)
Signed-off-by: Mikael Magnusson <mikachu@comhem.se>
openbox/config.c

index 2cdf1fb2557566614412c51458c0c2c85cbb7eb3..5e6c3ff3a6458280ed1579189606b5c4f97df212 100644 (file)
@@ -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);
     }
 }