Skip to content

Commit 74ba43e

Browse files
committed
Default to ortho linetype, allow setting via !global ARCH_LINETYPE = ...
1 parent a9c35c2 commit 74ba43e

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

dist/plantuml-stdlib/stdlib/archimate/_examples_/Archimate-Elements.wsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@startuml
22

3-
!global $ARCH_LOCAL = false
3+
!global $ARCH_LOCAL = true
44
!global $ARCH_DEBUG = true
55
!global $ARCH_MINIMUM_WIDTH = 120
66

dist/plantuml-stdlib/stdlib/archimate/_examples_/example.puml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
!global $ARCH_LOCAL = false
44
!global $ARCH_DEBUG = true
55

6+
'!global $ARCH_LINETYPE = curve
7+
'!global $ARCH_LINETYPE = polyline
8+
'!global $ARCH_LINETYPE = ortho
9+
610
!if ($ARCH_LOCAL == false)
711
!include <archimate/Archimate>
812
'!theme archimate-alternate from <archimate/themes>

dist/plantuml-stdlib/stdlib/archimate/themes/shared_style.puml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ skinparam maxMessageSize 150
44
' No <style> alternative found yet for skinparam maxMessageSize to make it work on elements that have nested elements
55
skinparam StereotypeAlignment right
66

7+
'No <style> alternative found yet for skinparam lineType ortho
8+
!global $ARCH_LINETYPE ?= ortho
9+
skinparam lineType $ARCH_LINETYPE
10+
711
' fallback values if theme does not define it
812
!global $ARCH_DEFAULT_BACKGROUND = "#white"
913
!global $ARCH_DEFAULT_FONT ?= "Verdana"

0 commit comments

Comments
 (0)