2023-01-18 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdservice(8) that could cause dropboxes to be
	instantiated with invalid segue level values.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2023-01-18 09:51:42 -05:00
parent 0f5777d498
commit 567fe756b7
2 changed files with 4 additions and 1 deletions

View File

@ -23927,3 +23927,6 @@
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
* Corrected errors in the WebAPI documentation regarding the
argument type of the 'LINE<n>_TIME_TYPE' field in the 'SaveLog' call.
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdservice(8) that could cause dropboxes to be
instantiated with invalid segue level values.

View File

@ -279,7 +279,7 @@ bool MainObject::StartDropboxes(QString *err_msg)
}
if(q->value(22).toInt()<1) {
args.push_back(QString::asprintf("--segue-level=%d",
q->value(22).toInt()));
q->value(22).toInt()/100));
args.push_back(QString::asprintf("--segue-length=%u",
q->value(23).toUInt()));
}