From c4120291e02c4dff140f2daf937ae515779ee7f5 Mon Sep 17 00:00:00 2001 From: Andy Yates <ayates@ebi.ac.uk> Date: Sat, 12 Mar 2011 10:26:22 +0000 Subject: [PATCH] Only specify the fill colour not just the colour which makes for a clearer graph --- modules/Bio/EnsEMBL/Hive/Utils/Graph.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/Bio/EnsEMBL/Hive/Utils/Graph.pm b/modules/Bio/EnsEMBL/Hive/Utils/Graph.pm index 363280e26..0febcfea3 100644 --- a/modules/Bio/EnsEMBL/Hive/Utils/Graph.pm +++ b/modules/Bio/EnsEMBL/Hive/Utils/Graph.pm @@ -26,11 +26,11 @@ See inline =head1 AUTHOR -$Author: lg4 $ +$Author: ady $ =head1 VERSION -$Revision: 1.2 $ +$Revision: 1.3 $ =cut @@ -193,7 +193,7 @@ sub _add_colour { my $config = $self->config()->{Colours}->{Status}; my $other = $config->{OTHER}; my $colour = $config->{$a->stats()->status()} || $other; - $graph->add_node($a->dbID(), color => $colour); + $graph->add_node($a->dbID(), fillcolor => $colour); return; } -- GitLab