Am Samstag, dem 10.12.2022 um 14:17 +0000 schrieb José Matos:
> Is there any option to avoid this automatic action? Or in another way
> to say that I do not want to close the parent document when closing
> this document in particular?

Not that I know. OTOH there is in ~Buffer()

        // loop over children
        for (auto const & p : d->children_positions) {
                Buffer * child = const_cast<Buffer *>(p.first);
                if (theBufferList().isLoaded(child)) {
                        if (theBufferList().isOthersChild(this,
child))
                                child->setParent(nullptr);
                        else
                                theBufferList().release(child);
                }
        }

I am not sure, though, when exactly that isOthersChild() condition
meets.

-- 
Jürgen
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel

Reply via email to