From df5c6703912cc3106246b046b9cc7efa1343975d Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Tue, 6 May 2008 14:48:23 +0000 Subject: [PATCH] Fix of bug #2140, filled hexagon in stead of outline svn: r10685 --- src/plugins/GVFamilyLines.py | 1 + src/plugins/GVHourGlass.py | 1 + src/plugins/GVRelGraph.py | 1 + 3 files changed, 3 insertions(+) diff --git a/src/plugins/GVFamilyLines.py b/src/plugins/GVFamilyLines.py index 471a0e67b..0f575d1cc 100644 --- a/src/plugins/GVFamilyLines.py +++ b/src/plugins/GVFamilyLines.py @@ -893,6 +893,7 @@ class FamilyLinesReport(Report): style = "rounded" else: shape = "hexagon" + style = "solid" if self._colorize == 'colored': if gender == person.MALE: color = self._colors['male'] diff --git a/src/plugins/GVHourGlass.py b/src/plugins/GVHourGlass.py index 3aec9ea03..33a1411ff 100644 --- a/src/plugins/GVHourGlass.py +++ b/src/plugins/GVHourGlass.py @@ -201,6 +201,7 @@ class HourGlassReport(Report): style = "rounded" else: shape = "hexagon" + style = "solid" if self.colorize == 'colored': if gender == person.MALE: color = self.colors['male'] diff --git a/src/plugins/GVRelGraph.py b/src/plugins/GVRelGraph.py index 444ad885a..e125f9679 100644 --- a/src/plugins/GVRelGraph.py +++ b/src/plugins/GVRelGraph.py @@ -272,6 +272,7 @@ class RelGraphReport(Report): style = "rounded" else: shape = "hexagon" + style = "solid" if self.colorize == 'colored': if gender == person.MALE: color = self.colors['male']