Skip to content

Commit

Permalink
fix misalignment bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Sep 21, 2024
1 parent 6644f8a commit ac234d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/layout/Layout.re
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ module State = {
};

let jump_cell = (s: t, ~over: LCell.t) => {
let rel = s.rel;
// let rel = s.rel;
let jumped = jump_block(s, ~over=LCell.flatten(over));
LCell.is_space(over) ? jumped : {...jumped, rel};
// LCell.is_space(over) ? jumped : {...jumped, rel};
jumped;
};
let jump_tok = jump_block;

Expand Down

0 comments on commit ac234d1

Please sign in to comment.