Commit 56ed274e authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

исправил опечатку

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58396 954022d7-b5bf-4e40-9824-e11837661b57
parent 61453a1e
......@@ -2413,7 +2413,7 @@ var gUndoInsDelCellsFlag = true;
{
result = 'changeAutoFilter';
}
else if((DeleteCellsAndShiftLeft || DeleteCellsAndShiftTo) && activeCells.c1 <= tableRange.c1 && activeCells.r1 <= tableRange.r1 && activeCells.c2 >= tableRange.c2 && activeCells.r2 >= tableRange.r1)
else if((DeleteCellsAndShiftLeft || DeleteCellsAndShiftTop) && activeCells.c1 <= tableRange.c1 && activeCells.r1 <= tableRange.r1 && activeCells.c2 >= tableRange.c2 && activeCells.r2 >= tableRange.r1)
result = 'changeAutoFilter'
}
//если выделенная область находится до а/ф
......@@ -5153,7 +5153,8 @@ var gUndoInsDelCellsFlag = true;
}
else if((colEnd <= startRangeCell && val > 0) || (colEnd < startRangeCell && val < 0))
{
this._editFilterAfterInsertColumn(range,val,undefined,type,activeCells);
if((activeCells.c1 <= ref.c1 && activeCells.c2 >= ref.c2 && options.type == "insRow") || (activeCells.r1 <= ref.r1 && activeCells.r2 >= ref.r2 && options.type == "insCol"))
this._editFilterAfterInsertColumn(range,val,undefined,type,activeCells);
}
else if((colStart < startRangeCell && colEnd > startRangeCell && colEnd <= endRangeCell) || (colEnd <= startRangeCell && val < 0))
{
......
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