CC-2301 : not allowing any sliding with only global crossfade durations.

This commit is contained in:
Naomi 2013-05-03 15:32:07 -04:00
parent 75e4e0c9b6
commit ce81691743
1 changed files with 5 additions and 3 deletions

View File

@ -1182,7 +1182,8 @@ var AIRTIME = (function(AIRTIME){
start: $fadeOut.data("cueout") - $fadeOut.data("cuein") - $fadeOut.data("length") start: $fadeOut.data("cueout") - $fadeOut.data("cuein") - $fadeOut.data("length")
}], }],
states: { states: {
'fadein': false 'fadein': false,
'shift': false
} }
}); });
@ -1203,7 +1204,8 @@ var AIRTIME = (function(AIRTIME){
start: 0 start: 0
}], }],
states: { states: {
'fadeout': false 'fadeout': false,
'shift': false
} }
}); });
@ -1211,7 +1213,7 @@ var AIRTIME = (function(AIRTIME){
} }
//set the first track to not be moveable (might only be one track depending on what follows) //set the first track to not be moveable (might only be one track depending on what follows)
tracks[0].states["shift"] = false; //tracks[0].states["shift"] = false;
$html.dialog({ $html.dialog({
modal: true, modal: true,