-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(render/dot): makes the 'width' attribute on transitions with a no…
…te attached is heeded at all
- Loading branch information
Showing
18 changed files
with
467 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
test/render/fixtures/312-d-non-hierarchic-transition-with-a-note-and-a-width.dot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
digraph "state transitions" { | ||
fontname="Helvetica" fontsize=12 penwidth=2.0 splines=true ordering=out compound=true overlap=scale nodesep=0.3 ranksep=0.1 | ||
node [shape=plaintext style=filled fillcolor="#FFFFFF01" fontname=Helvetica fontsize=12 penwidth=2.0] | ||
edge [fontname=Helvetica fontsize=10] | ||
|
||
"a" [margin=0 class="state regular" label= < | ||
<table align="center" cellborder="0" border="2" style="rounded" width="48"> | ||
<tr><td width="48" cellpadding="7">a</td></tr> | ||
</table> | ||
>] | ||
"i_note_tr_a_b_1" [shape=point style=invis margin=0 width=0 height=0 fixedsize=true] | ||
"a" -> "i_note_tr_a_b_1" [arrowhead=none penwidth=2] | ||
"i_note_tr_a_b_1" -> "b" [label=" \l" penwidth=2] | ||
"i_note_tr_a_b_1" -> "note_tr_a_b_1" [style=dashed arrowtail=none arrowhead=none weight=0] | ||
"note_tr_a_b_1" [label="this is a note on the transition a --> b\l" shape=note fontsize=10 color=black fontcolor=black fillcolor="#ffffcc" penwidth=1.0] | ||
"b" [margin=0 class="state regular" label= < | ||
<table align="center" cellborder="0" border="2" style="rounded" width="48"> | ||
<tr><td width="48" cellpadding="7">b</td></tr> | ||
</table> | ||
>] | ||
|
||
} |
Oops, something went wrong.