From 31ba53b28a213c2a9490628071e05acee9af8f31 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 17 Jan 2020 12:28:46 -0700 Subject: [PATCH] Fix the fill color for the tutorial graph legend. --- doc/doxygen/scripts/steps.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/doxygen/scripts/steps.pl b/doc/doxygen/scripts/steps.pl index 0295816181..c2266cfa3a 100644 --- a/doc/doxygen/scripts/steps.pl +++ b/doc/doxygen/scripts/steps.pl @@ -35,8 +35,8 @@ my %colors = ( "fluids" => 'yellow2', "solids" => 'lightblue', "time dependent" => 'dodgerblue1', - "unfinished" => 'black', - "code-gallery" => 'black', + "unfinished" => 'white', + "code-gallery" => 'white', ); my %style = ( @@ -122,7 +122,7 @@ foreach $step (@ARGV) printf " code_gallery_$tag [label=\"\", URL=\"\\ref code_gallery_$tag\", tooltip=\"$tooltip\""; my $kind = "code-gallery"; - print "$style{$kind}"; + print "$style{$kind},fillcolor=\"$colors{$kind}\""; } print "];\n"; -- 2.39.5