From f52ea84fbf92b220a5f9784970993cfd10d1ea30 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 8 Oct 2022 16:29:36 +0200 Subject: [PATCH] App: [skip ci] for the dependency graph use orange color to indicate links that go out of scope --- src/App/Document.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Document.cpp b/src/App/Document.cpp index e793681cba..634b13b222 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -887,7 +887,7 @@ void Document::exportGraphviz(std::ostream& out) const auto res = edge(GlobalVertexList[getId(obj)], GlobalVertexList[getId(linkedObj)], DepList); if(res.second) - edgeAttrMap[res.first]["color"] = "red"; + edgeAttrMap[res.first]["color"] = "orange"; } } }