]> Dogcows Code - chaz/openbox/blobdiff - openbox/keytree.c
add a popup dialog that shows where you are in a keychain
[chaz/openbox] / openbox / keytree.c
index e86fb4c6a47f6edee9b0c867e0c620c1d4e208e9..b41b1cf7d7a81af2f4f6326b60f4718af23f2829 100644 (file)
@@ -52,16 +52,14 @@ KeyBindingTree *tree_build(GList *keylist)
         return NULL; /* nothing in the list.. */
 
     for (it = g_list_last(keylist); it; it = g_list_previous(it)) {
+        GList *kit;
+
         p = ret;
         ret = g_new0(KeyBindingTree, 1);
-        if (p == NULL) {
-            GList *it;
 
-            /* this is the first built node, the bottom node of the tree */
-            ret->keylist = g_list_copy(keylist); /* shallow copy */
-            for (it = ret->keylist; it; it = g_list_next(it)) /* deep copy */
-                it->data = g_strdup(it->data);
-        }
+        for (kit = it; kit != NULL; kit = g_list_previous(kit))
+            ret->keylist = g_list_prepend(ret->keylist,
+                                          g_strdup(kit->data)); /* deep copy */
         ret->first_child = p;
         if (!translate_key(it->data, &ret->state, &ret->key)) {
             tree_destroy(ret);
This page took 0.024174 seconds and 4 git commands to generate.