Commit 0ee5043c authored by GoshaZotov's avatar GoshaZotov

fix bug 32981

parent 86130689
...@@ -2562,7 +2562,7 @@ ...@@ -2562,7 +2562,7 @@
{ {
var table = worksheet.TableParts[i]; var table = worksheet.TableParts[i];
var intersection = range.intersection(table.Ref); var intersection = range.intersection(table.Ref);
if(intersection.r1 === table.Ref.r1 + 1 && intersection.r2 >= table.Ref.r2) if(null !== intersection && intersection.r1 === table.Ref.r1 + 1 && intersection.r2 >= table.Ref.r2)
{ {
range.r1++; range.r1++;
......
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