From ed331b1f4ff3ab75ec976dcdabfd72d4423b0f3f Mon Sep 17 00:00:00 2001 From: Bruno Cabral Date: Wed, 19 Jul 2023 10:50:48 -0700 Subject: [PATCH] missing textvariable from CTkLabel --- customtkinter/windows/widgets/ctk_label.py | 1 + 1 file changed, 1 insertion(+) diff --git a/customtkinter/windows/widgets/ctk_label.py b/customtkinter/windows/widgets/ctk_label.py index 0eb7831..047f1e3 100644 --- a/customtkinter/windows/widgets/ctk_label.py +++ b/customtkinter/windows/widgets/ctk_label.py @@ -35,6 +35,7 @@ class CTkLabel(CTkBaseClass): text: str = "CTkLabel", font: Optional[Union[tuple, CTkFont]] = None, + textvariable: Union[tkinter.Variable, None] = None, image: Union[CTkImage, None] = None, compound: str = "center", anchor: str = "center", # label anchor: center, n, e, s, w