Skip to content

Commit

Permalink
fix Ctx.push_zigg bug causing selection to get stuck
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Sep 1, 2024
1 parent ee0ca13 commit fd628a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/editor/Ctx.re
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ let push_zigg = (~onto as d: Dir.t, zigg: Zigg.t, ~fill=Cell.empty, ctx: t) => {
// need to propagate given fill if push_slope did not incorporate
let fill = Stds.Lists.is_empty(s_d) ? fill : Cell.empty;
let ctx = push_wald(~onto=d, top, ~fill, ctx);
let rest = Dir.order(d, ([], s_b));
let rest = Dir.order(d, (s_b, []));
map_hd(Frame.Open.cat(rest), ctx);
};

Expand Down

0 comments on commit fd628a4

Please sign in to comment.