I use an MVC style model when creating my programs. Everything runs as expected on my main computer. However, when I build the executable, there are issues with certain buttons that need to have another event occur in order for the initial button pressed to work. (I.e. Press next button(boolean) increment counter) It does not increment the first time, following clicks due increment the number.
if I hit the button to run the main program within the exectuable, it will not work until another even is completed.
To me it seems as if the program isn't acknowleding the event occuring, is this a possible issue?
Programs with event based loops have worked before on the same sations and the program works pre-compile.
Any help on debugging this would be very appreciated.
Is there a known issue with compiling programs/executables that use parrel event driven loops?