dulimarta / spherical-easel

https://spherical-easel.vercel.app
Other
3 stars 7 forks source link

Beta or advanced features mode tools list issue #86

Closed dickinson0718 closed 1 month ago

dickinson0718 commented 1 month ago

When you are in the beta or advanced features mode (i.e. using http://localhost:8080/?features=beta ) and you change from the Tools menu/side bar to the Object sidebar and then back to the Tools menu, the only tool that is available is the "Developer Only Tool". All other tools are hidden. :-(

dulimarta commented 1 month ago

The fix is embarrassingly simple 😄. It was a typo: slice(0) vs. splice(0) around line 120 of ToolGroups.vue

permissibleButtonGroup = toolGroups.splice(0) // The incorrect code
permissibleButtonGroup = toolGroups.slice(0)