Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames2002-02-11 18:56:40 +0000
committerjames2002-02-11 18:56:40 +0000
commitae432e8f07adb6425ae17738d939694327446e6b (patch)
treeae655c4434178e34ef10c636bbc323b2ec624516
parent352cbe82bc34ff4b89bd0544d09599227bf00029 (diff)
downloadeclipse.platform.team-ae432e8f07adb6425ae17738d939694327446e6b.tar.gz
eclipse.platform.team-ae432e8f07adb6425ae17738d939694327446e6b.tar.xz
eclipse.platform.team-ae432e8f07adb6425ae17738d939694327446e6b.zip
Remove WRAP attribute on Console
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/Console.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/Console.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/Console.java
index a2ec944f1..449413336 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/Console.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/Console.java
@@ -194,7 +194,7 @@ public class Console extends ViewPart {
composite.setLayout(layout);
composite.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_FILL | GridData.HORIZONTAL_ALIGN_FILL));
- viewer = new TextViewer(composite, SWT.WRAP | SWT.V_SCROLL | SWT.H_SCROLL);
+ viewer = new TextViewer(composite, SWT.V_SCROLL | SWT.H_SCROLL);
GridData data = new GridData(GridData.FILL_BOTH);
viewer.setEditable(false);
viewer.getControl().setLayoutData(data);

Back to the top