]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java
Add server capabilities to SLC RCP
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.rcp / src / org / argeo / slc / client / rcp / Perspective.java
index 8ada2a007fadb6c7b3d579240b9f9184c9939354..e3b0c4b1a3bd095ca99059fb5e1a73f6c6924bc7 100644 (file)
@@ -1,6 +1,7 @@
 package org.argeo.slc.client.rcp;
 
 import org.argeo.slc.client.ui.views.ExecutionModulesView;
+import org.argeo.slc.client.ui.views.ResultListView;
 import org.eclipse.ui.IPageLayout;
 import org.eclipse.ui.IPerspectiveFactory;
 
@@ -12,7 +13,9 @@ public class Perspective implements IPerspectiveFactory {
                layout.setFixed(true);
 
                layout.addStandaloneView(ExecutionModulesView.ID, false,
-                               IPageLayout.LEFT, 1.0f, editorArea);
+                               IPageLayout.LEFT, 0.5f, editorArea);
+               layout.addStandaloneView(ResultListView.ID, false, IPageLayout.RIGHT,
+                               0.5f, editorArea);
        }
 
 }