From f44d7f64b5f26be82003717bbfe2acbaccf029f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernst=20W=C3=BCrger?= Date: Thu, 5 Dec 2024 10:44:19 +0100 Subject: [PATCH] feat: Add `display_parent_relation` to `PhysicalFunction` per default --- capellambse_context_diagrams/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/capellambse_context_diagrams/__init__.py b/capellambse_context_diagrams/__init__.py index c3d947e..fddf8e7 100644 --- a/capellambse_context_diagrams/__init__.py +++ b/capellambse_context_diagrams/__init__.py @@ -135,7 +135,13 @@ def register_classes() -> None: "display_derived_interfaces": True, }, ), - (pa.PhysicalFunction, DiagramType.PAB, {}), + ( + pa.PhysicalFunction, + DiagramType.PAB, + { + "display_parent_relation": True, + }, + ), ] cap: dict[str, CSSdef] = { "fill": [COLORS["_CAP_Entity_Gray_min"], COLORS["_CAP_Entity_Gray"]],