From 9a7d771e1f75977349e341427fb3efc68760466e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedek=20D=C3=A9v=C3=A9nyi?= Date: Thu, 26 Sep 2024 18:30:23 +0200 Subject: [PATCH] Images don't do that --- tksvg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tksvg/__init__.py b/tksvg/__init__.py index e08877b..c485c65 100644 --- a/tksvg/__init__.py +++ b/tksvg/__init__.py @@ -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():