Skip to content

Commit

Permalink
#4349 - Macro: Selection does not work in sequence editing with Shift…
Browse files Browse the repository at this point in the history
…+Up/Down arrow combination
  • Loading branch information
tmrr13 committed Apr 17, 2024
1 parent 6f59492 commit 947afef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ export class SequenceRenderer {
step,
caretPosition,
} = this;
let baseArray = currentChain.subChains.flatMap((item) => item.nodes);
const baseArray = currentChain.subChains.flatMap((item) => item.nodes);
const currentArrayLength = currentChain.length;
const nodeIndex = baseArray.indexOf(currentNode);
const prevStepBound =
Expand Down

0 comments on commit 947afef

Please sign in to comment.