|
1467 | 1467 | }
|
1468 | 1468 | }
|
1469 | 1469 | },
|
| 1470 | + CHTMLupdateFrom: function (bbox) { |
| 1471 | + this.CHTML.updateFrom(bbox); |
| 1472 | + if (this.inferRow) this.data[0].CHTML.updateFrom(bbox); |
| 1473 | + }, |
1470 | 1474 |
|
1471 | 1475 | CHTMLcanStretch: function (direction,H,D) {
|
1472 | 1476 | var stretch = false;
|
|
1478 | 1482 | return stretch;
|
1479 | 1483 | },
|
1480 | 1484 | CHTMLstretchV: function (h,d) {
|
1481 |
| - this.CHTML.updateFrom(this.Core().CHTMLstretchV(h,d)); |
| 1485 | + this.CHTMLupdateFrom(this.Core().CHTMLstretchV(h,d)); |
1482 | 1486 | return this.CHTML;
|
1483 | 1487 | },
|
1484 | 1488 | CHTMLstretchH: function (node,w) {
|
1485 |
| - this.CHTML.updateFrom(this.CHTMLstretchCoreH(node,w)); |
| 1489 | + this.CHTMLupdateFrom(this.CHTMLstretchCoreH(node,w)); |
1486 | 1490 | return this.CHTML;
|
1487 | 1491 | },
|
1488 | 1492 | CHTMLstretchCoreH: function (node,w) {
|
|
1721 | 1725 | return this.CHTML;
|
1722 | 1726 | },
|
1723 | 1727 | CHTMLstretchH: function (node,w) {
|
1724 |
| - this.CHTMLstretchCoreH(node,w); |
| 1728 | + this.CHTMLupdateFrom(this.CHTMLstretchCoreH(node,w)); |
1725 | 1729 | this.toCommonHTML(node,{stretch:true});
|
1726 | 1730 | return this.CHTML;
|
1727 | 1731 | }
|
|
2681 | 2685 | return node;
|
2682 | 2686 | },
|
2683 | 2687 | CHTMLstretchV: function (h,d) {
|
2684 |
| - this.CHTML.updateFrom(this.Core().CHTMLstretchV(h,d)); |
| 2688 | + this.CHTMLupdateFrom(this.Core().CHTMLstretchV(h,d)); |
2685 | 2689 | this.toCommonHTML(this.CHTMLnodeElement(),{stretch:true});
|
2686 | 2690 | return this.CHTML;
|
2687 | 2691 | },
|
2688 | 2692 | CHTMLstretchH: function (node,w) {
|
2689 |
| - this.CHTML.updateFrom(this.CHTMLstretchCoreH(node,w)); |
| 2693 | + this.CHTMLupdateFrom(this.CHTMLstretchCoreH(node,w)); |
2690 | 2694 | this.toCommonHTML(node,{stretch:true});
|
2691 | 2695 | return this.CHTML;
|
2692 | 2696 | }
|
|
2699 | 2703 | node = this.CHTMLcreateNode(node);
|
2700 | 2704 | if (this.data[0]) {
|
2701 | 2705 | this.data[0].toCommonHTML(node);
|
2702 |
| - this.CHTML.updateFrom(this.data[0].CHTML); |
| 2706 | + this.CHTMLupdateFrom(this.data[0].CHTML); |
2703 | 2707 | this.CHTMLhandleBBox(node);
|
2704 | 2708 | }
|
2705 | 2709 | return node;
|
|
0 commit comments