MaterialFX
MaterialFX copied to clipboard
MFXFilterComboBox doesn`t show the items
FilterComboBox doesn`t show the items on first opening if the items list contains only 1 item.
Can you share a minimal reproducible example please?
It doesn't work for me either. Here's an MRE.
import io.github.palexdev.materialfx.controls.MFXFilterComboBox;
import javafx.scene.layout.BorderPane;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Test extends javafx.application.Application {
public void start(Stage stage) {
MFXFilterComboBox box = new MFXFilterComboBox<String>();
box.getItems().add("test");
stage.setScene(new Scene(new BorderPane(box), 400, 400));
stage.setTitle("Test");
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.