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:53:29 -05:00
parent 817d327e3d
commit 5b08dc312c
2 changed files with 4 additions and 1 deletions

View File

@ -20966,3 +20966,6 @@
* Fixed a bug in rdlibrary(1) that caused the field names for the * Fixed a bug in rdlibrary(1) that caused the field names for the
'FILENAME' and 'LENGTH' fields in the 'Cart Data Dump (CSV)' report 'FILENAME' and 'LENGTH' fields in the 'Cart Data Dump (CSV)' report
to be corrupted. to be corrupted.
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) { if(q->value(22).toInt()<1) {
args.push_back(QString().sprintf("--segue-level=%d", args.push_back(QString().sprintf("--segue-level=%d",
q->value(22).toInt())); q->value(22).toInt()/100));
args.push_back(QString().sprintf("--segue-length=%u", args.push_back(QString().sprintf("--segue-length=%u",
q->value(23).toUInt())); q->value(23).toUInt()));
} }