added allow-overlap parameter for notes

This commit is contained in:
2025-07-16 17:20:31 +02:00
parent 03138269f9
commit 1f24ba8efe
5 changed files with 37 additions and 10 deletions

View File

@ -82,12 +82,12 @@
let (p1, p2) = (none, none)
let cell = none
if note.side == "left" {
p1 = "["
p1 = note.pos2
p2 = note.pos
cell = get-note-box(note)
} else if note.side == "right" {
p1 = note.pos
p2 = "]"
p2 = note.pos2
cell = get-note-box(note)
} else if note.side == "over" and note.aligned-with != none {
let box1 = get-note-box(note)