Skip to content

Commit

Permalink
Merge pull request #41 from mpds-io/projections
Browse files Browse the repository at this point in the history
don't hide non-formers button for comparison
  • Loading branch information
blokhin authored Sep 9, 2024
2 parents faef5ef + 28237cd commit b896f82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion plot/cube/cube.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() ] : [],
]
}
Expand Down
3 changes: 2 additions & 1 deletion plot/matrix/matrix.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() : [],
]
}
Expand Down

0 comments on commit b896f82

Please sign in to comment.