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']