diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-07 13:04:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 13:04:36 (GMT) |
commit | 75890e4e0271db6c1953ea888f827b31bbb64bdf (patch) | |
tree | 8411f075a633f6d7fc264a418ff2626ae7585ee8 /src | |
parent | 8ad204c7fb9275fd3b2d7ae9594755955eba6083 (diff) | |
parent | 1419dca75d33aaf96919ae7a1fc77137d22db14f (diff) | |
download | Doxygen-75890e4e0271db6c1953ea888f827b31bbb64bdf.zip Doxygen-75890e4e0271db6c1953ea888f827b31bbb64bdf.tar.gz Doxygen-75890e4e0271db6c1953ea888f827b31bbb64bdf.tar.bz2 |
Merge pull request #759 from albert-github/feature/bug_363762_2
BugĀ 363762 - Tooltips are not shown in dot-generated graphs (extension)
Diffstat (limited to 'src')
-rw-r--r-- | src/dot.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 5adc2ab..93fdb20 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1883,6 +1883,10 @@ void DotNode::writeBox(FTextStream &t, { t << ",tooltip=\"" << escapeTooltip(m_tooltip) << "\""; } + else + { + t << ",tooltip=\" \""; // space in tooltip is required otherwise still something like 'Node0' is used + } t << "];" << endl; } |