but when items are larger than a certain value I can not scroll there are no arrows to slide. Keyboard does not help as well. How can I makethe combobox scrollable ? Thanks in advance
I assume that you use gtkmm4 (not gtkmm3). If so, don’t use ComboBox. It’s
deprecated since gtk/gtkmm 4.10. Use Gtk::DropDown. It’s available since gtk/gtkmm 4.0.
You should also show what exact code you have so far and ideally a screenshot of the unwanted result, so that readers have some context to suggest possible causes or improvements.
Thank you for the examples DropDown seems to solve the issue. But I was wondering how to add/append items to the DropDown for example after a button click ?