Open Tool window's when custom editor is opened. Follow
Hello.
I have a custom ToolWindow registered from plugin.xml and need it to be shown when editor is selected.
Problem is in component initialisation order, as I see.
selectNotify() is called before createToolWindowContent(Project project, ToolWindow toolWindow), so I cant just call ToolWindowManager.getInstance(m_Project).getToolWindow(ID).show(null);
Can anyone say me, what I can do, to initialise ToolWindow earlyer?
Please sign in to leave a comment.
I think problem isn't actual now. I have some workaround there, and IDEA is calling selectNotify method several times, right after all ToolWindows are created.
Maybe this might help: