Skip to content

Commit

Permalink
don't hide non-formers button for comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-donarise committed Sep 7, 2024
1 parent 46ee8b7 commit 28237cd
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 28237cd

Please sign in to comment.