The following "problem": I have a ComboBox in Qt with entries - let's say - ['one', 'two', 'three']. When I look in the window, the first choice 'one' is choosen. I don't need to change and click on the box to change it. So ".clicked.connect" or ".activated.connect" doesn't make sense. I tried it. Instead of creating a "dummy" field like 'choose' in the list ['choose', 'one', 'two', 'three'], it would be good it I could say: If NOTHING is clicked or activated or changed (so: just the first standard choice 'one'), use this or that slot.
How could I realize it? I didn't find this question, so I am sorry if some question like this exists but I didn't see it.