Skip to content

Commit

Permalink
Merge pull request #1436 from rianmcguire/master
Browse files Browse the repository at this point in the history
Fix marker-start being drawn on mid vertices
  • Loading branch information
grewn0uille authored Sep 1, 2021
2 parents 31cd0d7 + e4734e0 commit 5816d77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion weasyprint/svg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def draw_markers(self, node, font_size, fill_stroke):
self.draw_node(child, font_size, fill_stroke)
self.stream.pop_state()

position = 'mid' if angles else 'start'
position = 'mid' if angles else 'start'

@staticmethod
def get_paint(value):
Expand Down

0 comments on commit 5816d77

Please sign in to comment.