You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File Menu & QuickTools Visibility for editor tabs (#1292) ## Changes This PR implements visibility management for the file menu icon and adds QuickTools visibility control per tab. ### File Menu Icon (Pencil Icon) - Hides the file menu icon from header when active editor tab type is "page", otherwise show it ### QuickTools - Adds `hideQuickTools` boolean property to EditorFile (defaults to false) - Allows per-tab control of QuickTools visibility ## Usage ```javascript // Create a new tab with QuickTools hidden new EditorFile("My Tab", { hideQuickTools: true }); ```