-
Hi, I wrote a little custom widget which creates a checkbox and button class AssetWidget(customtkinter.CTkFrame):
def __init__(self, parent, name = ""):
super().__init__(parent)
self.checkbox = customtkinter.CTkCheckBox(self, text="TestArchive")
self.checkbox.grid(row=0, column=0, padx=20, pady=10, sticky="w")
self.install_button = customtkinter.CTkButton(self, text="Install")
self.install_button.grid(row=0, column=1, padx=20, pady=10, sticky="e")
self.columnconfigure(0, weight=1)
self.columnconfigure(1, weight=0) I wanted to ask if there is a built-in way to limit the output of a text like this: Right now if the text is too long it looks like this with my piece of code: I know that I could create my own method to replace the output string before it gets rendered but I wanted to know if this or similar functionality is already implemented in customtkinter. Kind Regards |
Beta Was this translation helpful? Give feedback.
Answered by
dipeshSam
Nov 10, 2024
Replies: 1 comment
-
There is no built-in support for ellipsis ( Regards. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Ati1707
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no built-in support for ellipsis (
...
) text incustomtkinter
.Regards.