Commit a753346d authored by GoshaZotov's avatar GoshaZotov

fix bug 34073

parent d1a54e09
......@@ -11753,12 +11753,13 @@
if(bIsExpandRange)
{
var selectionRange = t.model.selectionRange;
var activeCell = selectionRange.activeCell;
var activeCell = selectionRange.activeCell.clone();
var activeCellRange = new Asc.Range(activeCell.col, activeCell.row, activeCell.col, activeCell.row);
var expandRange = t.model.autoFilters._getAdjacentCellsAF(activeCellRange, true);
//change selection
t.setSelection(expandRange);
selectionRange.activeCell = activeCell;
}
//sort
......
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