Merge branch 'open1182' into open1193

This commit is contained in:
Henry 2016-10-11 13:26:20 -07:00
commit 938bf3c4df

View File

@ -176,11 +176,12 @@ define(
* @returns {TimeSystemDeltas} * @returns {TimeSystemDeltas}
*/ */
TimeConductorMode.prototype.deltas = function (deltas) { TimeConductorMode.prototype.deltas = function (deltas) {
if (arguments.length !== 0 && this.metadata().key!=='fixed') { if (arguments.length !== 0) {
var bounds = this.calculateBoundsFromDeltas(deltas); var bounds = this.calculateBoundsFromDeltas(deltas);
this.dlts = deltas; this.dlts = deltas;
this.conductor.bounds(bounds); if (this.metadata().key!=='fixed') {
this.conductor.bounds(bounds);
}
} }
return this.dlts; return this.dlts;
}; };