Commit 7b5c948c authored by konovalovsergey's avatar konovalovsergey

fix bug 20175.

recalculate more formulas than necessary.
parent 67e4fd3b
......@@ -1237,7 +1237,7 @@
var curNodesElemX = curNodes[curCellX];
for (var id in curNodesElemX) {
var elem = curNodesElemX[id];
if (!elem.dataWrap.isOutput) {
if (!elem.dataWrap.isOutput && elem.dataWrap.bbox.r1 <= curCellY) {
elem.dataWrap.isOutput = true;
res.push(elem.dataWrap);
for (var i = elem.dataWrap.bbox.c1; i <= elem.dataWrap.bbox.c2; ++i) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment