From: Wolfgang Bangerth Date: Fri, 17 Jan 2020 19:28:46 +0000 (-0700) Subject: Fix the fill color for the tutorial graph legend. X-Git-Tag: v9.2.0-rc1~645^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9381%2Fhead;p=dealii.git Fix the fill color for the tutorial graph legend. --- 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";