Skip to content

Commit

Permalink
Merge pull request #6944 from albert-github/feature/bug_digraph
Browse files Browse the repository at this point in the history
Handling digraph versus label
  • Loading branch information
doxygen committed May 31, 2019
2 parents 8ceb179 + f3a0861 commit 0a15da0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/dot.cpp
Expand Up @@ -231,6 +231,8 @@ static EdgeProperties umlEdgeProps =
};


static QCString convertLabel(const QCString &l);

static QCString getDotFontName()
{
static QCString dotFontName = Config_getString(DOT_FONTNAME);
Expand Down Expand Up @@ -259,7 +261,7 @@ static void writeGraphHeader(FTextStream &t,const QCString &title=QCString())
}
else
{
t << "\"" << convertToXML(title) << "\"";
t << "\"" << convertLabel(title) << "\"";
}
t << endl << "{" << endl;
if (interactiveSVG) // insert a comment to force regeneration when this
Expand Down Expand Up @@ -4780,7 +4782,7 @@ void DotGroupCollaboration::writeGraphHeader(FTextStream &t,
}
else
{
t << "\"" << convertToXML(title) << "\"";
t << "\"" << convertLabel(title) << "\"";
}
t << endl;
t << "{" << endl;
Expand Down

0 comments on commit 0a15da0

Please sign in to comment.