Esempio n. 1
0
        internal static IssuesIgnoresWindow Create()
        {
            IssuesIgnoresWindow window = GetWindow <IssuesIgnoresWindow>(true);

            window.Focus();

            return(window);
        }
Esempio n. 2
0
        protected override void InitOnEnable()
        {
            TabBase[] tabs =
            {
                new PathIgnoresTab(MaintainerSettings.Issues.pathIgnores,           OnPathIgnoresChange),
                new ComponentIgnoresTab(MaintainerSettings.Issues.componentIgnores, OnComponentIgnoresChange)
            };

            Init(IssuesFinder.MODULE_NAME, tabs, MaintainerSettings.Issues.ignoresTabIndex, OnTabChange);

            instance = this;
        }
Esempio n. 3
0
 protected override void UnInitOnDisable()
 {
     instance = null;
 }