On Wednesday, May 27, 2020 at 2:37:57 PM UTC+2, Differance wrote:
>
> On 5/27/20, Seth Johnson <[email protected] <javascript:>> wrote:
>
> The simple approach is if there are more than one of the same
> vnode in the outline you've grabbed to paste-as-template, those all
> get a new vnode and become clone-nodes pointing to that instead. If
> they are loners within the outline you've grabbed, make them plain,
> non-clone nodes.
>
Hmm, this might work. I'm not 100% sure about that, but it just might work.
Here is a function that would say if a node appears more than once in the
outline or not.
def is_unique(v):
while v is not c.hiddenRootNode:
if len(v.parents) == 1:
v = v.parents[0]
else:
return False
return True
Vitalije
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/leo-editor/02de850b-f2d1-4a60-ba74-0f4f5042ab66%40googlegroups.com.