Merge branch 'stable'

This commit is contained in:
SPRINX0\prochazka
2025-12-22 08:27:29 +01:00
2 changed files with 4 additions and 3 deletions

View File

@@ -912,7 +912,7 @@
await tick();
const invMap = _.invert(realColumnUniqueNames);
const colIndex = invMap[uniquePath.join('.')];
scrollIntoView([null, colIndex]);
scrollIntoView([null, parseInt(colIndex)]);
currentCell = [currentCell[0], parseInt(colIndex)];
selectedCells = [currentCell];
@@ -1168,7 +1168,7 @@
const invMap = _.invert(realColumnUniqueNames);
const colIndex = invMap[display.focusedColumns[0]];
if (colIndex) {
scrollIntoView([null, colIndex]);
scrollIntoView([null, parseInt(colIndex)]);
}
}
});