mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 14:43:30 +02:00
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:
parent
817d327e3d
commit
5b08dc312c
@ -20966,3 +20966,6 @@
|
||||
* Fixed a bug in rdlibrary(1) that caused the field names for the
|
||||
'FILENAME' and 'LENGTH' fields in the 'Cart Data Dump (CSV)' report
|
||||
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.
|
||||
|
@ -279,7 +279,7 @@ bool MainObject::StartDropboxes(QString *err_msg)
|
||||
}
|
||||
if(q->value(22).toInt()<1) {
|
||||
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",
|
||||
q->value(23).toUInt()));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user