diff options
Diffstat (limited to 'share/extensions/svgcalendar.py')
| -rwxr-xr-x | share/extensions/svgcalendar.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/extensions/svgcalendar.py b/share/extensions/svgcalendar.py index dba73ed11..7410d3079 100755 --- a/share/extensions/svgcalendar.py +++ b/share/extensions/svgcalendar.py @@ -252,7 +252,9 @@ class SVGCalendar (inkex.Effect): txt_atts = {'style': simplestyle.formatStyle(style),
'x': str( self.day_w * week_x ), 'y': str( self.day_h * (week_y+2) ) } - if day==0: + if day==0 and not self.options.fill_edb: + pass # draw nothing + elif day==0: if before: inkex.etree.SubElement(gdays, 'text', txt_atts).text = str( before_month[-bmd] ) bmd -= 1 |
