(2016-12-09, 9:26)Merlijn Wissink Wrote: ...callout in a callout doesn't look very well :
I don't know what's happening here, but it sure isn't what it's supposed to do. Any ideas?
I didn't know nested callouts were possible in LPub3D or LPub for that matter
I certainly haven't released any functionality of the sort; furthermore, the legacy LPub code suggest this behaviour is explicitly forbidden.
Code:
// This is what's supposed to happen when a callout [begin] meta is encountered.
case CalloutBeginRc:
if (callout) {
parseError("Nested CALLOUT not allowed within the same file",current);
} else {
callout = new Callout(curMeta,view);
callout->setTopOfCallout(current);
}
break;
Did the behaviour you expected exist on any earlier version of the software?
It would be interesting to see an example of the LPub meta pattern you used in the model file to produce nested callouts.
Cheers,