From 5a4c28b1788b8c99832c15c281faeff179a732a9 Mon Sep 17 00:00:00 2001 From: TomSchimansky Date: Fri, 5 Aug 2022 16:08:46 +0200 Subject: [PATCH] removed print from CTk class --- customtkinter/windows/ctk_tk.py | 1 - 1 file changed, 1 deletion(-) diff --git a/customtkinter/windows/ctk_tk.py b/customtkinter/windows/ctk_tk.py index cc6270d..7ae922a 100644 --- a/customtkinter/windows/ctk_tk.py +++ b/customtkinter/windows/ctk_tk.py @@ -142,7 +142,6 @@ class CTk(tkinter.Tk): def geometry(self, geometry_string: str = None): if geometry_string is not None: - print(self.apply_geometry_scaling(geometry_string), geometry_string) super().geometry(self.apply_geometry_scaling(geometry_string)) # update width and height attributes