summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index f9bd520..9b3161d 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -1313,7 +1313,7 @@ void writeDotGraph(DotNode *root,
)
{
// generate the graph description for dot
- //printf("writeDotGraph(%s,%d)\n",baseName.data(),backArrows);
+ //printf("writeDotGraph(%s,%d,lrRank=%d)\n",baseName.data(),backArrows,lrRank);
QFile f;
f.setName(baseName+".dot");
if (f.open(IO_WriteOnly))
@@ -1415,8 +1415,12 @@ static void findMaximalDotGraph(DotNode *root,
}
//printf("lastFit=%d\n",lastFit);
- bool hasLRRank = (lrRank || (minDistance==1 && width>Config_getInt("MAX_DOT_GRAPH_WIDTH"))) &&
- !Config_getBool("UML_LOOK");
+ bool hasLRRank = (lrRank ||
+ (minDistance==1 &&
+ width>Config_getInt("MAX_DOT_GRAPH_WIDTH") &&
+ !Config_getBool("UML_LOOK")
+ )
+ );
writeDotGraph(root,
gt,