From f9da7bca886efa3a892d241f93dd078b66e1a8bf Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Thu, 20 Mar 2008 07:45:56 +0000 Subject: [PATCH] Correct fill colors #1942 svn: r10350 --- src/plugins/GVRelGraph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/GVRelGraph.py b/src/plugins/GVRelGraph.py index 8b8567132..57773134c 100644 --- a/src/plugins/GVRelGraph.py +++ b/src/plugins/GVRelGraph.py @@ -246,7 +246,7 @@ class RelGraphReport(Report): label = "%s (%s)" % (label, fam_id) color = "" fill = "" - style = "" + style = "solid" if self.colorize == 'colored': color = self.colors['family'] elif self.colorize == 'filled': @@ -266,6 +266,7 @@ class RelGraphReport(Report): fill = "" if gender == person.MALE: shape="box" + style="solid" elif gender == person.FEMALE: shape="box" style="rounded"