Skip to content

Feature Request: Add justify option to CTkComboBox dropdown list #2759

@YaYahya313

Description

@YaYahya313

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions