Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry <akhenry@gmail.com>2016-10-11 23:25:24 +0300
committerHenry <akhenry@gmail.com>2016-10-11 23:25:24 +0300
commit8b2047ca3270306e0116aa7366572fc0f988dd0e (patch)
tree37278c0aae65dd8aca983ac9fb2e2fb1a58520a5
parent02c543fddc9a6a1f68c9ecaf7d7ec512a12bdd9f (diff)
Fixed issue with setting deltasopen1182
-rw-r--r--platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js b/platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js
index 26f75b5df..58790fbf2 100644
--- a/platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js
+++ b/platform/features/conductor-v2/conductor/src/ui/TimeConductorMode.js
@@ -176,11 +176,12 @@ define(
* @returns {TimeSystemDeltas}
*/
TimeConductorMode.prototype.deltas = function (deltas) {
- if (arguments.length !== 0 && this.metadata().key!=='fixed') {
+ if (arguments.length !== 0) {
var bounds = this.calculateBoundsFromDeltas(deltas);
-
this.dlts = deltas;
- this.conductor.bounds(bounds);
+ if (this.metadata().key!=='fixed') {
+ this.conductor.bounds(bounds);
+ }
}
return this.dlts;
};