FaheemM1020

Results 14 comments of FaheemM1020

Do you mean this: ``` import customtkinter root = customtkinter.CTk() tetbox = customtkinter.CTkTextbox(root,font=("roboto",30)) tetbox.insert(index=customtkinter.END,text="Hello, World!") tetbox.pack(padx=10,pady=10,expand=True,fill='both') root.mainloop() ```

There is a padx argument for text box so there should be some way to do it

Do like this : CTkButton(master,text=' ') # Put a space between quotes Here's You Fixed Code: ``` app = ctk.CTk() app.geometry(str(1280) + 'x' + str(720) + '+0+0') app.rowconfigure(0, weight=1, uniform='u')...

Have a look at this: https://pypi.org/project/tklinenums/

Can you provide the code for this ?

Can you please provide a code to reproduce this issue ?

I dont think its possible for you to change border color for CTkOptionMenu.. Try creating your own widget

Did i fix first problem : ``` import customtkinter from CTkTable import * root = customtkinter.CTk() root.geometry("400x200") root.grid_rowconfigure(0, weight=1) root.grid_columnconfigure(0, weight=1) row_nums = [] deleted_values = [] tabview = customtkinter.CTkTabview(root,...