- 
                Notifications
    
You must be signed in to change notification settings  - Fork 1.1k
 
Open
Description
Description:
I would like to request a new feature for CTkComboBox. Currently, the justify parameter only affects the input field, but not the dropdown list. This is especially important for right-to-left languages like Persian and Arabic.
Suggested Solution:
Please add a dropdown_justify parameter or extend the existing justify parameter to apply to both the input field and dropdown list.
Example Usage:
import customtkinter as ctk
combo = ctk.CTkComboBox(
    master=root,
    values=["Option 1", "Option 2", "Option 3"],
    justify="right",           # For input field
    dropdown_justify="right"   # For dropdown list
)Importance:
- Better RTL language support
 - Improved visual consistency
 - Enhanced internationalization capabilities
 
Metadata
Metadata
Assignees
Labels
No labels