customtkinter .configure text_font #135
Unanswered
Coding-Mania-Begins-Now
asked this question in
Q&A
Replies: 1 comment
-
Hello @Coding-Mania-Begins-Now i've already made an issue for that check it in #266. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have become quite fond of customtkinter, as it makes it much easier to display widgets efficiently.
However, one thing I have noticed is that you cannot configure
text_font
.For example, if I were to create a button:
button = customtkinter.CTkButton(master, text="Hi!", text_font=("Consolas", 25)
and if I try to configure its
text_font
:button.configure(text_font=('Arial', 23))
I receive this error:
tkinter.TclError: unknown option "-text_font"
There should be an option to configure text_font.
Beta Was this translation helpful? Give feedback.
All reactions