Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsuen2007-07-08 20:39:46 +0000
committerrsuen2007-07-08 20:39:46 +0000
commitccf9b4d0987bf06c21977ba3b5fc15109e8f7e23 (patch)
tree670c8a63e2a03d9f2dcd6a2116bd408d2e2711ab /framework/bundles/org.eclipse.ecf.ui
parente00b1eb7615e368105b5d55c396e76449af11bd5 (diff)
downloadorg.eclipse.ecf-ccf9b4d0987bf06c21977ba3b5fc15109e8f7e23.tar.gz
org.eclipse.ecf-ccf9b4d0987bf06c21977ba3b5fc15109e8f7e23.tar.xz
org.eclipse.ecf-ccf9b4d0987bf06c21977ba3b5fc15109e8f7e23.zip
Display views by default to fix bug #193562.
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.ui')
-rw-r--r--framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/internal/ui/perspectives/CommunicationPerspective.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/internal/ui/perspectives/CommunicationPerspective.java b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/internal/ui/perspectives/CommunicationPerspective.java
index 4da15cbee..b779c76bf 100644
--- a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/internal/ui/perspectives/CommunicationPerspective.java
+++ b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/internal/ui/perspectives/CommunicationPerspective.java
@@ -41,7 +41,8 @@ public class CommunicationPerspective implements IPerspectiveFactory {
String editorArea = layout.getEditorArea();
// Top left.
- layout.createFolder("topLeft", IPageLayout.LEFT, 0.26f, editorArea); //$NON-NLS-1$
+ IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.26f, editorArea); //$NON-NLS-1$
+ topLeft.addView(IPageLayout.ID_RES_NAV);
// Bottom left.
IFolderLayout bottomLeft = layout.createFolder("bottomLeft", //$NON-NLS-1$

Back to the top