Skip to content

Commit

Permalink
Images don't do that
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Sep 26, 2024
1 parent 295bef0 commit 9a7d771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tksvg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def configure(self, **kwargs):
"""Configure the image with SVG options and pass to PhotoImage.configure"""
svg_options = {key: kwargs.pop(key) for key in self.__svg_options if key in kwargs}
if kwargs:
return tk.PhotoImage.configure(self, **kwargs)
tk.PhotoImage.configure(self, **kwargs)

options = ""
for key, value in svg_options.items():
Expand Down

0 comments on commit 9a7d771

Please sign in to comment.