CustomTkinter
CustomTkinter copied to clipboard
When I set anchor='w' and ipadx=20, it seems that ipadx has no effect
- When I set anchor='w' and ipadx=20, it seems that ipadx has no effect
- I can not set ipadx =(20, 10) just like padx
code: `import customtkinter as ctk
class Window(ctk.CTk):
def __init__(self):
super().__init__()
self.geometry('400x300')
ctk.CTkLabel(self, text='Banana', width=100, bg_color='red', fg_color='yellow', text_color='black', anchor='w').grid(ipadx=20)
if name == 'main': Window().mainloop() `