Skip to content

Commit 9a7d771

Browse files
committed
Images don't do that
1 parent 295bef0 commit 9a7d771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tksvg/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def configure(self, **kwargs):
4747
"""Configure the image with SVG options and pass to PhotoImage.configure"""
4848
svg_options = {key: kwargs.pop(key) for key in self.__svg_options if key in kwargs}
4949
if kwargs:
50-
return tk.PhotoImage.configure(self, **kwargs)
50+
tk.PhotoImage.configure(self, **kwargs)
5151

5252
options = ""
5353
for key, value in svg_options.items():

0 commit comments

Comments
 (0)