Hello!
I try to create an Activity Diagram, which looks like this:

But what I get is something like this:

I used this code to create the graph:
@startuml
title Cycle
(*) --> "Create"
if "Creation succesful?" then
-->[Yes] "Start"
--> "Stop"
--> "Start"
--> "Delete"
--> (*)
else
-->[No] "Create"
endif
@enduml
How can I get the last arrow from "Stop" to "Delete" instead from "Start"?
Is there a better way to create such a graph? The check "Creation successful" and the arrows from and to "Create" doesn't look beautiful. 
Thanks for your help!
Best regards,
J.B.