From 5c71a3c85b03f90f427bba5b8ebbd8c6c3d20bad Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Wed, 4 Dec 2019 18:20:28 +0100 Subject: [PATCH] #1110 Fix for transparent rect under edge title, was misaligned --- cypress/platform/current.html | 61 ++++------------------------------- src/diagrams/state/shapes.js | 8 ++--- 2 files changed, 10 insertions(+), 59 deletions(-) diff --git a/cypress/platform/current.html b/cypress/platform/current.html index a6031d6fc..a1d3f0774 100644 --- a/cypress/platform/current.html +++ b/cypress/platform/current.html @@ -10,61 +10,14 @@

info below

stateDiagram - state P { - Child - } + [*] --> State1 + State1 --> State2 : Transition 1 + State1 --> State3 : Transition 2 + State1 --> State4 : Transition 3 + State1 --> State5 : Transition 4 + State2 --> State3 : Transition 5 + State1 --> [*]
- -
stateDiagram - state P { - state Par { - Child - } - } -
-
stateDiagram - state P { - state GPar { - state Parent { - state "Long state description" as TheLongChild - TheLongChild : New line - TheLongChild : Another line - TheLongChild - } - } - } -
-
-
-
stateDiagram - state Parent { - C - } -
- -
stateDiagram - state PilotCockpit { - state Parent { - C - } - } -
-
stateDiagram - state Pilot { - state GParent { - state Parent1 { - Child - } - state Parent2 { - Child2 - } - } - state Parent3 { - Child4 - } - - } -