Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent simultaneous actions when it would cause an overlap #13

Open
davidje13 opened this issue Oct 28, 2017 · 1 comment
Open

Prevent simultaneous actions when it would cause an overlap #13

davidje13 opened this issue Oct 28, 2017 · 1 comment
Labels

Comments

@davidje13
Copy link
Owner

Simultaneous actions currently account for column-level overlaps, but not content-level overlaps. For example, note left / note right bind to a single column but create content in the space after that column. This currently causes some potential overlaps:

define A, B, C, D
begin A, B, C
A -> C

abc:
A -> B
B -> A
note right of B: 'AAA'
A -> B
B -> A

simultaneously:
C -> D
D -> C
note left of C: 'EEE'
end D
C -> A

oops

@davidje13 davidje13 added the bug label Oct 28, 2017
@davidje13
Copy link
Owner Author

The same issue now also applies when using the new & syntax from #11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant