Skip to content

Commit 8b2047c

Browse files
committed
Fixed issue with setting deltas
1 parent 02c543f commit 8b2047c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,12 @@ define(
176176
* @returns {TimeSystemDeltas}
177177
*/
178178
TimeConductorMode.prototype.deltas = function (deltas) {
179-
if (arguments.length !== 0 && this.metadata().key!=='fixed') {
179+
if (arguments.length !== 0) {
180180
var bounds = this.calculateBoundsFromDeltas(deltas);
181-
182181
this.dlts = deltas;
183-
this.conductor.bounds(bounds);
182+
if (this.metadata().key!=='fixed') {
183+
this.conductor.bounds(bounds);
184+
}
184185
}
185186
return this.dlts;
186187
};

0 commit comments

Comments
 (0)