Commit d92339ed authored by GoshaZotov's avatar GoshaZotov

fix bug: add format table over part of another format table(intersection only first column)

parent 5a2db70b
......@@ -4934,7 +4934,7 @@
result = true;
break;
}
else if(tableRef.c1 >= range.c1 && tableRef.c1 < range.c2 && tableRef.c2 > range.c2)
else if(tableRef.c1 >= range.c1 && tableRef.c1 <= range.c2 && tableRef.c2 > range.c2)
{
result = true;
break;
......
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