From d4e07199e96f4c9d32158f73dc00b91d19cac3d7 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Tue, 3 Mar 2020 09:51:56 +0800 Subject: [PATCH] App: fix missing transformation in Link::getTrueLinkedObject() --- src/App/Link.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Link.cpp b/src/App/Link.cpp index 22869ad949..82b41aa6d8 100644 --- a/src/App/Link.cpp +++ b/src/App/Link.cpp @@ -718,7 +718,7 @@ DocumentObject *LinkBaseExtension::getTrueLinkedObject( if(!ret) return 0; bool transform = linkTransform(); const char *subname = getSubName(); - if(subname) { + if(subname || (mat && transform)) { ret = ret->getSubObject(subname,0,mat,transform,depth+1); transform = false; }