mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 17:32:20 +02:00
2017-02-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'rdlogedit/voice_tracker.cpp' where the Title of voice track carts was not having whitespace trimmed properly.
This commit is contained in:
parent
d4682f6e1b
commit
de66db368c
@ -15585,3 +15585,6 @@
|
||||
'<lengthDeviation>', '<averageSegueLength>' and
|
||||
'<averageHookLength>' fields in the return of the 'ListCart'
|
||||
and 'ListCarts' web methods to return a two-digit hours field.
|
||||
2017-02-17 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in 'rdlogedit/voice_tracker.cpp' where the Title
|
||||
of voice track carts was not having whitespace trimmed properly.
|
||||
|
@ -3930,7 +3930,7 @@ bool VoiceTracker::InitTrack()
|
||||
}
|
||||
edit_track_cart=new RDCart(next_cart);
|
||||
edit_track_cart->setOwner(track_log->name());
|
||||
edit_track_cart->setTitle(edit_logline[1]->markerComment());
|
||||
edit_track_cart->setTitle(edit_logline[1]->markerComment().stripWhiteSpace());
|
||||
if(edit_track_cuts[1]!=NULL) {
|
||||
delete edit_track_cuts[1];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user