src/Lsp.vala
authorAlan Knowles <alan@roojs.com>
Thu, 21 Mar 2024 14:23:24 +0000 (22:23 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 21 Mar 2024 14:23:24 +0000 (22:23 +0800)
src/Lsp.vala

index 841de53..82f6ec2 100644 (file)
@@ -480,6 +480,7 @@ namespace Lsp {
                        GLib.debug("copyList source=%d target=%d", (int)source.get_n_items(), (int)target.get_n_items());
                        var i = 0;
                        while (i < source.get_n_items()) {
+                               GLib.debug("copyList compare %d", i);
                                if (i >= target.get_n_items()) {
                                        GLib.debug("copyList append");
                                        target.append(source.get_item(i));
@@ -495,7 +496,7 @@ namespace Lsp {
                                        i++;
                                        continue;
                                }
-                               GLib.debug("copyList updateChildren");
+                               GLib.debug("copyList same = updateChildren");
                                //
                                        // they are the same (ignoring children
                                copyList(sel.children,tel.children);