Skip to content

Commit

Permalink
fix missing name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenghaoMou committed Dec 12, 2024
1 parent 07b2f9b commit 55ee1c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rmc/exporters/writing_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __init__(self, base_width, base_color_id):
class Shader(Pen):

def __init__(self, base_width, base_color_id):
super().__init__(base_width, base_color_id)
super().__init__("Shader", base_width, base_color_id)
self.stroke_linecap = "round"
self.base_opacity = 0.1
# self.stroke_opacity = 0.2
Expand Down

0 comments on commit 55ee1c8

Please sign in to comment.