From 3356b2c107940ef1100fb6b3c1b55a184ed35e5e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 17 Jan 2020 13:18:56 -0700 Subject: [PATCH] Don't print lines connecting different parts of the legend. --- doc/doxygen/scripts/steps.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/doxygen/scripts/steps.pl b/doc/doxygen/scripts/steps.pl index 3e95334a6e..0295816181 100644 --- a/doc/doxygen/scripts/steps.pl +++ b/doc/doxygen/scripts/steps.pl @@ -253,7 +253,12 @@ foreach $kind (keys %style) } # now add connections to make sure they appear nicely next to each other # in the legend -print " basic -- techniques -- fluids -- solids -- time_dependent -- unfinished -- code_gallery;\n"; +print " basic -- techniques [style=invis];\n"; +print " techniques -- fluids [style=invis];\n"; +print " fluids -- solids [style=invis];\n"; +print " solids -- time_dependent [style=invis];\n"; +print " time_dependent -- unfinished [style=invis];\n"; +print " unfinished -- code_gallery [style=invis];\n"; # we need to tell 'dot' that all of these are at the same # rank to ensure they appear next to (as opposed to atop) -- 2.39.5