Fix SVG's mpadded container to not be removable, since the size no longer corresponds to the contents
This commit is contained in:
parent
bbac5d10ac
commit
93a2905024
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1434,7 +1434,7 @@
|
|||
if (values.lspace) {x = this.SVGlength2em(pad,values.lspace,mu)}
|
||||
if (values.voffset) {y = this.SVGlength2em(pad,values.voffset,mu)}
|
||||
svg.Add(pad,x,y); svg.Clean();
|
||||
svg.h = pad.h; svg.d = pad.d; svg.w = pad.w;
|
||||
svg.h = pad.h; svg.d = pad.d; svg.w = pad.w; svg.removeable = false;
|
||||
if (values.height !== "") {svg.h = this.SVGlength2em(svg,values.height,mu,"h",0)}
|
||||
if (values.depth !== "") {svg.d = this.SVGlength2em(svg,values.depth,mu,"d",0)}
|
||||
if (values.width !== "") {svg.w = this.SVGlength2em(svg,values.width,mu,"w",0)}
|
||||
|
|
Loading…
Reference in New Issue
Block a user