Fix SVG's mpadded container to not be removable, since the size no longer corresponds to the contents

This commit is contained in:
Davide P. Cervone 2012-02-06 13:39:49 -05:00
parent bbac5d10ac
commit 93a2905024
4 changed files with 5 additions and 74 deletions

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

View File

@ -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)}