From 31f70182042b7dd4b369755b568501f6d67bb7cd Mon Sep 17 00:00:00 2001 From: Andraxion Date: Sat, 27 Jun 2026 05:19:52 -0400 Subject: [PATCH] Revert "Open hidden studio tabs on first click" This reverts commit ec6036084eb6b652051980bc8027f46fae15e0e0. --- src/worldshaperStudio/toolWindowController.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/worldshaperStudio/toolWindowController.ts b/src/worldshaperStudio/toolWindowController.ts index 28ccc8d..927ded9 100644 --- a/src/worldshaperStudio/toolWindowController.ts +++ b/src/worldshaperStudio/toolWindowController.ts @@ -561,20 +561,7 @@ export function createToolWindowController(scope) { if (!entry) { return; } - const wasVisible = entry.visible === true; - const wasActive = scope.activeSidebarTab === normalizedKey; setActiveTool(normalizedKey); - if (!wasVisible) { - entry.visible = true; - syncPanels(); - persistPanelState(); - return; - } - if (!wasActive) { - syncPanels(); - persistPanelState(); - return; - } toggleEntryVisibility(entry); }