Details
-
Bug
-
Resolution: Fixed
-
Major
-
4.1-milestone-1
-
None
-
N/A
-
N/A (we only need to list bugs explicitly in the RN for bugfix releases)
-
Description
The main problem is that when a PopLevelProgressEvent is immediately followed by a StepProgressEvent the step progress is taken into account twice. Take for instance this use case:
push(2) push(1) step pop // --> here is the problem step step pop
Since the first pop updates the progress, the following StepProgressEvent should be ignored.