Skip to content

Commit

Permalink
feat: Add the ability to cycle through panels (hidden configurable)
Browse files Browse the repository at this point in the history
  • Loading branch information
seppulcro committed Oct 10, 2024
1 parent cdd84f7 commit 9923dbc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/services/sidebar.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,6 @@ export function switchPanel(
for (let i = actIndex + dir; i >= 0 || i < hiddenPanels.length; i += dir) {
panel = hiddenPanels[i]
newActIsHidden = true
console.log('Here')
if (!panel) {
if (visiblePanels.length) {
panel = visiblePanels[dir > 0 ? hdnIndex : hdnIndex - 1]
Expand Down

0 comments on commit 9923dbc

Please sign in to comment.