Skip to content

Commit

Permalink
Merge pull request #42 from floryst/fix_layoutconfig
Browse files Browse the repository at this point in the history
Fix layout config to sync views
  • Loading branch information
floryst authored Mar 19, 2018
2 parents 3fd8456 + d80dc14 commit 2bb826e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/config/glanceLayoutConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,20 @@ export default {
sliceX: {
cell: [2, 1],
propOverrides: {
viewType: 'View2D_X',
title: '-Z+Y',
orientations: [],
},
},
sliceY: {
cell: [1, 1],
propOverrides: {
viewType: 'View2D_Y',
title: '-Z+X',
orientations: [],
},
},
sliceZ: {
cell: [2, 2],
propOverrides: {
viewType: 'View2D_Z',
title: '+X+Y',
orientations: [],
},
Expand All @@ -64,6 +61,7 @@ export default {
sliceX: {
component: Layout2D,
props: {
viewType: 'View2D_X',
axis: 0,
orientation: 1,
viewUp: [0, 0, 1],
Expand All @@ -74,6 +72,7 @@ export default {
sliceY: {
component: Layout2D,
props: {
viewType: 'View2D_Y',
axis: 1,
orientation: -1,
viewUp: [0, 0, 1],
Expand All @@ -84,6 +83,7 @@ export default {
sliceZ: {
component: Layout2D,
props: {
viewType: 'View2D_Z',
axis: 2,
orientation: 1,
viewUp: [0, 1, 0],
Expand Down

0 comments on commit 2bb826e

Please sign in to comment.