I have a diagram where I have several parallel never-ending tasks; I tried the following to hide the "partial arrow":
@startuml
start
fork
while (loop forever)
:Button poll;
if (pressed) then
:debounce;
else
if (was_pressed)
if (duration > 2s)
if (duration > 8s)
if (duration < 10s)
:generate long press;
endif
else
:generate short press;
endif
endif
endif
endif
endwhile
-[hidden]->
detach
fork again
while (loop forever)
: wait for press;
: handle press;
endwhile
-[hidden]->
detach
fork again
: Bluetooth handling;
detach
fork again
: Battery charger;
detach
fork again
: Battery monitor;
detach
@enduml
but apparently this is not honored.
What am I doing wrong?