Fix problem with percentage width being used too many times in HTML-CSS output. Resolves issue #832.
This commit is contained in:
parent
354e18df87
commit
1cd23252c1
|
@ -2788,8 +2788,8 @@
|
||||||
span.bbox.lw *= f; span.bbox.rw *= f;
|
span.bbox.lw *= f; span.bbox.rw *= f;
|
||||||
if (math && math.bbox.width != null) {
|
if (math && math.bbox.width != null) {
|
||||||
span.style.minWidth = (math.bbox.minWidth || span.style.width);
|
span.style.minWidth = (math.bbox.minWidth || span.style.width);
|
||||||
span.style.width = stack.style.width = math.bbox.width;
|
span.style.width = math.bbox.width;
|
||||||
box.style.width = "100%";
|
box.style.width = stack.style.width = "100%";
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// Add color (if any)
|
// Add color (if any)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user