Hi all, 
I use an enum at the case selector input of a case structure to build a small state machine. The enum is defined as a type def, so that I can add states easily without editing all enums by hand. 
If I connect a case structure to the enum, the first time, the case structure labels are generated from the enum labels.  
Unfortunately if I add a state to the enum, the case structure labels are set to the pre-defined labels e.g. 0 (default), 1, 2, .... 
Changing case structure to sequence and back didn't work, adding cases also didn't work. 
Has anybody an idea how to get the labels back to the case structure? 
Greetings, 
Toni