CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

A modern and customizable python UI-library based on Tkinter

Results 548 CustomTkinter issues
Sort by recently updated
recently updated
newest added

Hi thank you for this great module it helped me create a very nice program. But i am having issues packaging my program using pyinstaller an auto-py-to-exe. I keep receiving...

Not sure why the user closed [#226](https://github.com/TomSchimansky/CustomTkinter/issues/226), as its still valid even in the dev branch. As `CTkButton` does not seem to inherit `Button` it has no `.invoke()` method currently....

enhancement

Hi, I have been using a number of frames with frames. When I set the colour, the frame is not displayed quite as expected. I wonder if there is some...

information

Hello, when writing the exact same code in Tkinter I get a correctly autosized window, while in CustomTkinter the window is way too big Tkinter ![python_3BWCIZkz7N](https://user-images.githubusercontent.com/34091479/200552487-b9c99955-783b-48ef-8192-b00c8964af0a.jpg) CustomTkinter ![python_adXm9hCqzl](https://user-images.githubusercontent.com/34091479/200552555-78d53cb9-e237-4627-98ce-005f1001f7d7.jpg)

CustomTkinter 4.6.3 Adding this third line to simple_example.py: ``` button_1 = customtkinter.CTkButton(master=frame_1, command=button_callback, border_width=3, width=20, corner_radius=20) button_1.pack(pady=12, padx=10) button_1.configure(border_width=3) ``` Causes exception: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 30, in button_1.configure(border_width=3) File...

bug

CustomTkinter 4.6.3 Adding this third line, to simple_example.py, causes the exception: ``` label_1 = customtkinter.CTkLabel(master=frame_1, justify=tkinter.LEFT) label_1.pack(pady=12, padx=10) label_1.configure(corner_radius=25) ``` Here is the stack: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 26, in...

bug

Hi, writing a code like this `self.geometry("400x170-0-0")` puts the window in the top left, as does +0+0, but it should place it in the lower right, which would be considered...

CustomTkinter 4.6.3 This was reproduced with simple_example.py: ``` switch_1 = customtkinter.CTkSwitch(master=frame_1) switch_1.pack(pady=12, padx=10) switch_1.configure(corner_radius=5) ``` Here is the error stack: ``` Traceback (most recent call last): File "/home/clive/PycharmProjects/customtk/simple_example.py", line 73,...

bug

CustomTkinter 4.6.3 These were reproduced with simple_example.py: ``` radiobutton_1 = customtkinter.CTkRadioButton(master=frame_1, variable=radiobutton_var, value=1) radiobutton_1.configure(border_color='yellow') radiobutton_1.pack(pady=12, padx=10) radiobutton_1.configure(corner_radius=5) ``` ``` radiobutton_1 = customtkinter.CTkRadioButton(master=frame_1, variable=radiobutton_var, value=1) radiobutton_1.configure(border_color='yellow') radiobutton_1.pack(pady=12, padx=10) radiobutton_1.configure(border_width_checked=5) ``` ```...

bug

CustomTkinter 4.6.3 Adding this third line, to simple_example.py, causes the exception: ``` progressbar_1 = customtkinter.CTkProgressBar(master=frame_1) progressbar_1.pack(pady=12, padx=10) progressbar_1.configure(corner_radius=25) ``` Here is the stack: ``` Traceback (most recent call last): File...

bug