We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3910437 + 8b2047c commit 938bf3cCopy full SHA for 938bf3c
platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js
@@ -176,11 +176,12 @@ define(
176
* @returns {TimeSystemDeltas}
177
*/
178
TimeConductorMode.prototype.deltas = function (deltas) {
179
- if (arguments.length !== 0 && this.metadata().key!=='fixed') {
+ if (arguments.length !== 0) {
180
var bounds = this.calculateBoundsFromDeltas(deltas);
181
-
182
this.dlts = deltas;
183
- this.conductor.bounds(bounds);
+ if (this.metadata().key!=='fixed') {
+ this.conductor.bounds(bounds);
184
+ }
185
}
186
return this.dlts;
187
};
0 commit comments