From 746bc0385b92947d7fa7a62d384d6c17e7aac63f Mon Sep 17 00:00:00 2001 From: laffra Date: Tue, 28 May 2024 22:13:54 +0200 Subject: [PATCH] Remove debug print --- ltk/widgets.py | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ltk/widgets.py b/ltk/widgets.py index 0a7c176..00cf787 100644 --- a/ltk/widgets.py +++ b/ltk/widgets.py @@ -1157,7 +1157,6 @@ def __setattr__(self, name, value): @property def context(self): if self._context == None: - window.console.log("Create context", self.element, self.element[0]) self._context = self.element[0].getContext("2d") return self._context diff --git a/pyproject.toml b/pyproject.toml index d1a0052..dac2a4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "pyscript-ltk" -version = "0.1.39" +version = "0.1.40" description = "A little toolkit for writing UIs in PyScript" readme = "README.md" authors = [{ name = "Chris Laffra", email = "chris@chrislaffra.com" }]