I need to show related AdwActionRow and hide all other AdwActionRows when user selects something from the choices given in an AdwComboRow.
How do I do that?
Unlike GtkComboBox, AdwComboRow doesn’t have a changed
signal which could conveniently be connected to the desired function.
I’m not going to use GtkComboBox inside an AdwActionRow because it does not look good inside an AdwActionRow.
I tried connecting activated
signal but it seems activated
signal is never emitted.
I tried connecting state-changed
signal but it is emitted too frequently to be useful. It meddles with user input and it is hard even to select something.
Any Ideas?