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
RvizVisualTools.prompt calls RemoteControl.waitForNextStep, which calls RemoteControl.rvizDashboardCallback. The prompt function gives no return, so there's no indication that of what the input was from the remote control. rvizDashboardCallback can handle up to four inputs, but waitForNextStep only offers a boolean output, which is then lost in the prompt function.
waitForNextStep and prompt should be modified to propagate the user's desired response in order to correctly handle the interface. There is currently no way to stop an activity using the prompt function - any response simple continues the sequence.
The text was updated successfully, but these errors were encountered:
RvizVisualTools.prompt
callsRemoteControl.waitForNextStep
, which callsRemoteControl.rvizDashboardCallback
. Theprompt
function gives no return, so there's no indication that of what the input was from the remote control.rvizDashboardCallback
can handle up to four inputs, butwaitForNextStep
only offers a boolean output, which is then lost in theprompt
function.waitForNextStep
andprompt
should be modified to propagate the user's desired response in order to correctly handle the interface. There is currently no way to stop an activity using theprompt
function - any response simple continues the sequence.The text was updated successfully, but these errors were encountered: