Skip to content

Commit

Permalink
fix matrix nonformers partially removing
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-donarise committed Sep 1, 2024
1 parent e0a455b commit 46ee8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plot/matrix/matrix.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ namespace $.$$ {
} )

this.links_traversed().cells_map.forEach( cell => {
matrix[cell.y][cell.x] = cell
matrix[cell.y][cell.x] = {...cell}
matrix[cell.x][cell.y] = {...cell, x: cell.y, y: cell.x} // NB only AB-all
})

Expand Down

0 comments on commit 46ee8b7

Please sign in to comment.