Exemplo n.º 1
0
        void ToggleEditorExtensionsAuthoring()
        {
            var newValue = !m_PaneWindow.document.fileSettings.editorExtensionMode;

            m_PaneWindow.document.fileSettings.editorExtensionMode = newValue;
            m_Selection.NotifyOfStylingChangePostStylingUpdate();
            SwitchLibraryTab(BuilderLibraryTab.Standard);

            if (newValue)
            {
                Builder.ShowWarning(BuilderConstants.InspectorEditorExtensionAuthoringActivated);
            }
        }