Skip to content

Commit

Permalink
fix #46
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Nov 9, 2024
1 parent 55085be commit 5962634
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/web/view/dec/Child.re
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ let view = (~font, p: Profile.t) => {
),
];
let body_line =
height <= 0 || r_closed_by_delim_after_newline && height <= 1
height <= 0
|| Option.is_none(fst(p.no_delim))
&& r_closed_by_delim_after_newline
&& height <= 1
? []
: Util.Svgs.Path.[
m(~x=p.ind, ~y=p.loc.row)
Expand Down

0 comments on commit 5962634

Please sign in to comment.