diff options
author | albert-github <albert.tests@gmail.com> | 2020-02-24 13:46:26 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-02-24 13:46:26 (GMT) |
commit | 8a7647bd12f383730c886b34c431ae976ec5ff83 (patch) | |
tree | 974a5cbec00b9206cd23b5232d3aa2ecf26ba781 /src/dotfilepatcher.cpp | |
parent | 3b392af822d81ae51919feb2c2fc4c539238bb3b (diff) | |
download | Doxygen-8a7647bd12f383730c886b34c431ae976ec5ff83.zip Doxygen-8a7647bd12f383730c886b34c431ae976ec5ff83.tar.gz Doxygen-8a7647bd12f383730c886b34c431ae976ec5ff83.tar.bz2 |
issue #7583 External Links in Inheritance Diagrams open in the Image Frame.
When having a function it opens in the current frame and uses the complete frame. Images (e.g. inherited diagrams) are displayed in a small "sub frame" and when displaying the link here it is not readable and furthermore the user doesn't know anything about the "sub frame". In case of an image the link should be displayed in the parent frame of the image.
Diffstat (limited to 'src/dotfilepatcher.cpp')
-rw-r--r-- | src/dotfilepatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotfilepatcher.cpp b/src/dotfilepatcher.cpp index efc6341..7a65d89 100644 --- a/src/dotfilepatcher.cpp +++ b/src/dotfilepatcher.cpp @@ -173,7 +173,7 @@ static QCString replaceRef(const QCString &buf,const QCString relPath, QCString url = link.mid(marker+1); if (!ref.isEmpty()) { - result = externalLinkTarget(); + result = externalLinkTarget(true); if (result != "") setTarget = TRUE; } result+= href+"=\""; |