Improve secure logging
[lgpl/argeo-commons.git] / security / plugins / org.argeo.security.ui / src / main / java / org / argeo / security / ui / UserHomePerspective.java
index 1ce7364e88395dab092292665ff608687251f4fd..1cf4dd3864a86dd23e73f1b3be460ebde5c288b7 100644 (file)
@@ -8,7 +8,8 @@ import org.eclipse.ui.IPerspectiveFactory;
 
 /** Home perspective for the current user */
 public class UserHomePerspective implements IPerspectiveFactory {
-       public final static String ID = "org.argeo.security.ui.userHomePerspective";
+       public final static String ID = SecurityUiPlugin.PLUGIN_ID
+                       + ".userHomePerspective";
 
        public void createInitialLayout(IPageLayout layout) {
                String editorArea = layout.getEditorArea();
@@ -18,11 +19,7 @@ public class UserHomePerspective implements IPerspectiveFactory {
                IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
                                0.30f, editorArea);
                left.addView(UserProfile.ID);
-               // left.addView(RolesView.ID);
-
-               IFolderLayout bottom = layout.createFolder("bottom",
-                               IPageLayout.BOTTOM, 0.30f, editorArea);
-               bottom.addView(LogView.ID);
+               left.addView(LogView.ID);
        }
 
 }