Describe the bug
yarpdataplayer speed control is not working.
To Reproduce
Open any recorded dataset with yarpdataplayer and try to change speed using the slider in the GUI.
Configuration:
Additional context
It seems that the variable utilities->speed is set in the GUI code
but it is not used elsewhere
yarp/src/yarpdataplayer$ grep -r "speed" .
./src/mainwindow.cpp: QString speed = QString("%1").arg(szValue);
./src/mainwindow.cpp: ui->speedValueLbl->setText(speed);
./src/mainwindow.cpp: utilities->speed = value;
./src/utils.cpp: speed(1.0),
./include/utils.h: double speed;
./include/UI/mainwindow.ui: <widget class="QLabel" name="speedLbl">
./include/UI/mainwindow.ui: <widget class="QLabel" name="speedValueLbl">
on it...
This has been handled in #2127. Thanks @xEnVrE
Fixed by #2127