Hi, i'm experiencing the following problem with org.eclipse.ui.perspectiveExtensions.
What I'm doing is programmatically opening two views at some point in my application.
activePage.showView(View1.ID);
activePage.showView(View2.ID);
I'm using org.eclipse.ui.perspectiveExtensions to customize view locations:
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="my.perspective">
<view
closeable="true"
id="my.view1"
minimized="false"
moveable="true"
relationship="bottom"
relative="org.eclipse.ui.navigator.ProjectExplorer"
standalone="false"
visible="false"/>
<view
closeable="true"
id="my.view2"
minimized="false"
moveable="true"
relationship="bottom"
relative="org.eclipse.ui.navigator.ProjectExplorer"
standalone="false"
visible="false"/>
</perspectiveExtension>
</extension>
What I'm trying to achive is that both view1 and view2 appears stacked up below project explorer. I've tried using my.view1 as a relative for my.view2, but it creates an empty part site below project explorer on startup.
Is there any way to fix it?