CC-4063: Timeline -> Add a track to a show will cause another show's cursor to be selected

-fixed
This commit is contained in:
denise 2012-07-03 14:52:27 -04:00
parent e11fe8a2b8
commit f6d79b1f54
1 changed files with 1 additions and 1 deletions

View File

@ -693,7 +693,7 @@ var AIRTIME = (function(AIRTIME){
//re-highlight selected cursors before draw took place
for (i = 0; i < cursorIds.length; i++) {
if (headerFooter[i] == "f") {
$tr = $table.find("tbody tr.sb-footer");
$tr = $table.find("tbody tr.sb-footer[id="+cursorIds[i]+"][si_id="+showInstanceIds[i]+"]");
} else {
$tr = $table.find("tr[id="+cursorIds[i]+"][si_id="+showInstanceIds[i]+"]");
}