Skip to content

Fix for AutoCompleteTextField caused regression preventing components from being clicked #2139

@ghost

Description

The button in this code can't be clicked until we use the auto complete:

Form current = new Form("Auto", BoxLayout.y());        
AutoCompleteTextField af = new AutoCompleteTextField(characters);
Button b = new Button("Click");
b.addActionListener(e -> ToastBar.showMessage("Auto", FontImage.MATERIAL_INFO));
current.addAll(af, b);
current.show();

The workaround is to remove the last commit made to the auto complete text field by myself specifically this fix: 825d32d which worked around the original issue but triggered a worse one.

I'm marking this as critical as this effectively breaks auto complete

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions