CC-4940: Playlist editor in Library ignores cue points set by silence detection when displaying item time

-small fix on where to set clip length
This commit is contained in:
denise 2013-02-11 12:32:20 -05:00
parent 69054806c4
commit 6071dea839
1 changed files with 1 additions and 1 deletions

View File

@ -398,6 +398,7 @@ SQL;
$entry = $this->plItem;
$entry["id"] = $obj->getDbId();
$entry["pos"] = $pos;
$entry["cliplength"] = $obj->getDbLength();
if ($obj instanceof CcFiles && $obj) {
$entry["cuein"] = $obj->getDbCuein();
$entry["cueout"] = $obj->getDbCueout();
@ -409,7 +410,6 @@ SQL;
$entry["cuein"] = "00:00:00";
$entry["cueout"] = $entry["cliplength"];
}
$entry["cliplength"] = $obj->getDbLength();
$entry["ftype"] = $objType;
}