1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00

Stop autoscrolling horizontall to reveal primary display cells as they don't need it

This commit is contained in:
Andrew Kingston 2024-06-24 15:29:56 +01:00
parent c4748d5cd6
commit df03a297c5
No known key found for this signature in database

View file

@ -180,7 +180,7 @@ export const initialise = context => {
// Check horizontal position of columns next
const { field } = parseCellID($focusedCellId)
const column = get(columnLookupMap)[field]
if (!column) {
if (!column || column.primaryDisplay) {
return
}