Remove 32 bits SWT.
[lgpl/argeo-commons.git] / org.argeo.cms.ui.workbench / src / org / argeo / cms / ui / workbench / UserHomePerspective.java
index 86caad9c45134cf482a83a36a2a0da012c5143ea..e5e98170a660e6ac066efc3561588e0b1dd0e2c4 100644 (file)
@@ -15,7 +15,7 @@
  */
 package org.argeo.cms.ui.workbench;
 
-import org.argeo.cms.ui.workbench.useradmin.LogView;
+import org.argeo.cms.ui.workbench.jcr.NodeFsBrowserView;
 import org.argeo.cms.ui.workbench.useradmin.UserProfile;
 import org.eclipse.ui.IFolderLayout;
 import org.eclipse.ui.IPageLayout;
@@ -23,18 +23,16 @@ import org.eclipse.ui.IPerspectiveFactory;
 
 /** Home perspective for the current user */
 public class UserHomePerspective implements IPerspectiveFactory {
-       public final static String ID = WorkbenchUiPlugin.PLUGIN_ID
-                       + ".userHomePerspective";
+       public final static String ID = WorkbenchUiPlugin.PLUGIN_ID + ".userHomePerspective";
 
        public void createInitialLayout(IPageLayout layout) {
                String editorArea = layout.getEditorArea();
                layout.setEditorAreaVisible(true);
                layout.setFixed(false);
 
-               IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
-                               0.30f, editorArea);
+               IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.40f, editorArea);
+               left.addView(NodeFsBrowserView.ID);
                left.addView(UserProfile.ID);
-               left.addView(LogView.ID);
+               // left.addView(LogView.ID);
        }
-
 }