diff --git a/plot/cube/cube.view.ts b/plot/cube/cube.view.ts index 47cd30d..3879d99 100644 --- a/plot/cube/cube.view.ts +++ b/plot/cube/cube.view.ts @@ -29,7 +29,8 @@ namespace $.$$ { setup() { return [ ... this.show_fixel() ? [ this.Fixel() ] : [], - this.multi_jsons() ? this.Intersection_on() : this.Nonformers(), + ... this.multi_jsons() ? [ this.Intersection_on() ] : [], + this.Nonformers(), ... this.show_setup() ? [ this.X_order(), this.Y_order(), this.Z_order() ] : [], ] } diff --git a/plot/matrix/matrix.view.ts b/plot/matrix/matrix.view.ts index 48af564..2263cac 100644 --- a/plot/matrix/matrix.view.ts +++ b/plot/matrix/matrix.view.ts @@ -53,7 +53,8 @@ namespace $.$$ { setup() { return [ ... this.json().payload.fixel ? [ this.Fixel() ] : [], - this.multi_jsons() ? this.Intersection_on() : this.Nonformers(), + ... this.multi_jsons() ? [ this.Intersection_on() ] : [], + this.Nonformers(), ... this.show_setup() ? this.sorting() : [], ] }