You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If multiple PresentChoiceSetOperations are queued with the ChoiceSetManager, then the listeners from later ChoiceSets can end up being called on earlier ChoiceSets. This is likely because the operation class is using a reference to the manager's current pending ChoiceSet instead of cloning the data.
Reproduction Steps
Present a ChoiceSet with the manager and while it's being presented, queue another ChoiceSet to be presented. Provide an onChoiceSelected listener for both.
In the HMI, select one of the available choices from the first ChoiceSet.
Expected Behavior
The listener for the first ChoiceSet is called.
Observed Behavior
The listener for the second ChoiceSet is called.
The text was updated successfully, but these errors were encountered:
Bug Report
If multiple PresentChoiceSetOperations are queued with the ChoiceSetManager, then the listeners from later ChoiceSets can end up being called on earlier ChoiceSets. This is likely because the operation class is using a reference to the manager's current pending ChoiceSet instead of cloning the data.
Reproduction Steps
onChoiceSelected
listener for both.Expected Behavior
The listener for the first ChoiceSet is called.
Observed Behavior
The listener for the second ChoiceSet is called.
The text was updated successfully, but these errors were encountered: