Skip to content

Commit

Permalink
set sub_stack to be default to on since its prefered
Browse files Browse the repository at this point in the history
  • Loading branch information
LTDakin committed Apr 29, 2024
1 parent 0dbde22 commit 4a6ff05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/store/modules/command_params.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const state = {

// Stack parameters
smartstackIsActive: true,
subStackIsActive: false,
subStackIsActive: true,

// Subframe parameters
subframeIsActive: false,
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/project_params.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const actions = {
commit('start_date', start_date)

commit('smart_stack', true)
commit('sub_stack', false)
commit('sub_stack', true)
commit('defocus', 0)
},
loadProject ({ state, commit }, project) {
Expand Down

0 comments on commit 4a6ff05

Please sign in to comment.