Commit 27af4522 authored by GoshaZotov's avatar GoshaZotov

fix bug 32531 - Не появляется кнопка автофильтра после отмены удаления со...

fix bug 32531 - Не появляется кнопка автофильтра после отмены удаления со сдвигом первого столбца фильтрованного диапазона
parent 6cf67938
...@@ -878,7 +878,7 @@ ...@@ -878,7 +878,7 @@
} }
else if(type === AscCH.historyitem_AutoFilter_Change || type === AscCH.historyitem_AutoFilter_ChangeTableInfo || type === AscCH.historyitem_AutoFilter_ChangeTableRef) else if(type === AscCH.historyitem_AutoFilter_Change || type === AscCH.historyitem_AutoFilter_ChangeTableInfo || type === AscCH.historyitem_AutoFilter_ChangeTableRef)
{ {
if(worksheet.AutoFilter && cloneData.newFilterRef.isEqual(worksheet.AutoFilter.Ref)) if(worksheet.AutoFilter && (cloneData.newFilterRef.isEqual(worksheet.AutoFilter.Ref) || (cloneData.oldFilter && cloneData.oldFilter.isAutoFilter())))
worksheet.AutoFilter = cloneData.oldFilter.clone(null); worksheet.AutoFilter = cloneData.oldFilter.clone(null);
else if(worksheet.TableParts) else if(worksheet.TableParts)
{ {
......
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