Reputation: 15771
Instead of choosing 'Restore default layout' I mistakenly choosed 'Store current as default layout', so my current layout (which I don't want to use) is set as default.
Now I cannot go to original layout anymore. Is there a way to reset the layout to its shipped value?
I'm on intellij 12.1.1, on Windows7.
Upvotes: 11
Views: 20411
Reputation: 63
To anyone who is struggling with this "basic" error, you can go to Settings (Ctrl + Alt + S) -> Appearance & Behavior -> Appearance -> Tool Windows and check the following check boxes:
All the others solutions that I have found didn't solve the problem and it is very frustrating that the IDE does not give support to reset the Window to its default.
P.S.: I can't post a screenshot of the settings mentioned above due to security of my company laptop, but it is very easy to find following the path I have written.
Upvotes: 1
Reputation: 401877
Layout stores the position and state of the tool windows, you can change it back how you like it and store it as the new default.
There is no GUI to reset layout to the IDE default, but the configuration is stored inside the project directory in ./idea/workspace.xml
file. When the project is closed you can delete <component name="ToolWindowManager">
node from this file.
Upvotes: 22