Commit 0e359b0f authored by GoshaZotov's avatar GoshaZotov

fix bug 34370

parent 31205f9b
......@@ -1229,7 +1229,7 @@
}
},
isEmptyAutoFilters: function(ar, insertType, exceptionArray, bConvertTableFormulaToRef)
isEmptyAutoFilters: function(ar, insertType, exceptionArray, bConvertTableFormulaToRef, bNotDeleteAutoFilter)
{
var worksheet = this.worksheet;
var activeCells = ar.clone();
......@@ -1283,7 +1283,7 @@
return bRes;
};
if(worksheet.AutoFilter)
if(worksheet.AutoFilter && !bNotDeleteAutoFilter)
{
changeFilter(worksheet.AutoFilter);
}
......
......@@ -8882,7 +8882,7 @@
}
//нужно удалить данные предыдущей вставки(нужно для удаления ф/т)
t.model.autoFilters.isEmptyAutoFilters(t.model.selectionRange.getLast());
t.model.autoFilters.isEmptyAutoFilters(t.model.selectionRange.getLast(), null, null, null, true);
undoPreviousPaste();
}
......
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