summaryrefslogtreecommitdiffstats
path: root/src/definition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/definition.cpp')
-rw-r--r--src/definition.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/definition.cpp b/src/definition.cpp
index 70a46d8..0851c9b 100644
--- a/src/definition.cpp
+++ b/src/definition.cpp
@@ -1343,7 +1343,6 @@ void Definition::writePathFragment(OutputList &ol) const
void Definition::writeNavigationPath(OutputList &ol) const
{
static bool generateTreeView = Config_getBool("GENERATE_TREEVIEW");
- static bool hasCustomFooter = !Config_getString("HTML_FOOTER").isEmpty();
ol.pushGeneratorState();
ol.disableAllBut(OutputGenerator::Html);
@@ -1356,13 +1355,7 @@ void Definition::writeNavigationPath(OutputList &ol) const
ol.writeString(" <div id=\"nav-path\" class=\"navpath\">\n");
ol.writeString(" <ul>\n");
writePathFragment(ol);
- if (!hasCustomFooter && generateTreeView) // write the doxygen logo as part of the navigation bar
- {
- ol.writeString(" <li class=\"footer\">");
- ol.writeLogo();
- ol.writeString("</li>\n");
- }
- if (!hasCustomFooter || !generateTreeView)
+ if (!generateTreeView)
{
ol.writeString(" </ul>\n");
ol.writeString(" </div>\n");