I've build a QStateMachine
it changes states base on the signals
Seems to work
except if I emit signals in the loop it still move only on state
(dose not seem to que the signals)
I did wrote a slot to see the signals and
I do get all the signals in the slot
However QStateMachine only move one state (instead of 3)

for example
for (int i = 0; i < 3; ++i)
{

emit goNextState();

}
but it only moves one state
What do I need to do?

Thank you

Ross