Plugin change is occuring only after deleting and creating project.Is this the usual behaviour of intellij plugin?
Hi,
For the plugin i am developing,to set the position of tool window icon on top of right sidebar,i have changed the property secondary as false.But it didn't change on build and run.The position changed when i deleted the project and build->run it again.Is this the usual behaviour of intellij plugin?
<toolWindow id="Cloud" canCloseContents="false" anchor="right" secondary="false"
factoryClass="com.ui.devices.CloudDevicesWindow"/>
Please sign in to leave a comment.
Tool window layout is part of project configuration ({ProjectDir}/.idea/workspace.xml/ <component name="ToolWindowManager">...) and it stores actual state. In plugin.xml you describe default/desired state for plugin's tool window (I mean 'anchor' and 'secondary'), so it's just initial configuration to be applied once when there is nothing about tool window with id "Cloud" in project configuration.