X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=eclipse%2Fplugins%2Forg.argeo.slc.client.rcp%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Frcp%2FPerspective.java;h=66d392491a2bc4d672c355e4c478da2f86ec51ed;hb=d606df2ef5b6bff9c4fa7a84136c6a79d3017f6f;hp=c5b83678429aa9e9bcd49d75f96776b681ca0fbb;hpb=8d63b14238448a9d11481e4071eba9d20e161ae2;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java b/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java index c5b836784..66d392491 100644 --- a/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java +++ b/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java @@ -9,7 +9,7 @@ public class Perspective implements IPerspectiveFactory { public void createInitialLayout(IPageLayout layout) { String editorArea = layout.getEditorArea(); layout.setEditorAreaVisible(false); - layout.setFixed(true); + layout.setFixed(false); IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.5f, editorArea); @@ -18,10 +18,14 @@ public class Perspective implements IPerspectiveFactory { IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.RIGHT, 0.5f, editorArea); topRight.addView("org.argeo.slc.client.ui.resultListView"); + topRight + .addPlaceholder("org.argeo.slc.client.ui.resultDetailView:UUID-*"); IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.BOTTOM, 0.6f, "topRight"); bottomRight.addView("org.argeo.slc.client.ui.processListView"); + bottomRight + .addPlaceholder("org.argeo.slc.client.ui.processDetailView:UUID-*"); IFolderLayout bottomLeft = layout.createFolder("bottomLeft", IPageLayout.BOTTOM, 0.6f, "topLeft");