Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-02-07 16:26:03 +0000
committerDani Megert2013-02-07 16:26:03 +0000
commit55af7911b511c996b42c60ad5f88076fda58dccd (patch)
tree411190403f0bf0b3f8e0819794e59bcad02fdf78
parentf8dbfa1b33bbc92782a1c19cf9ac528d8628aacb (diff)
downloadeclipse.platform.team-55af7911b511c996b42c60ad5f88076fda58dccd.tar.gz
eclipse.platform.team-55af7911b511c996b42c60ad5f88076fda58dccd.tar.xz
eclipse.platform.team-55af7911b511c996b42c60ad5f88076fda58dccd.zip
Fixed bug 342837: [History View] Out of the box the History view shouldv20130207-162603I20130220-0922I20130219-1600I20130219-0800I20130214-2011I20130212-0800
not get a horizontal scroll bar
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryTableProvider.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryTableProvider.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryTableProvider.java
index 4588b3f27..700a5cb3b 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryTableProvider.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryTableProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2011 IBM Corporation and others.
+ * Copyright (c) 2006, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -510,7 +510,7 @@ public class CVSHistoryTableProvider {
GridData data = new GridData(GridData.FILL_BOTH);
tree.setLayoutData(data);
- TableLayout layout = new TableLayout();
+ TableLayout layout= new TableLayout(true);
tree.setLayout(layout);
this.viewer = new TreeViewer(tree);

Back to the top