summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
diff options
context:
space:
mode:
authorSteve Northover <steve>2008-03-10 20:18:59 +0000
committerSteve Northover <steve>2008-03-10 20:18:59 +0000
commitce0d35fddef9fbe9ae46e24d75cd6f89802e0ab1 (patch)
treeb9fc2d43e184fb7379451cb1697fc87900aadd5b /bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
parente5ec8a34de6c6d24e8717ed9c7d73797c76d15f6 (diff)
downloadeclipse.platform.swt-ce0d35fddef9fbe9ae46e24d75cd6f89802e0ab1.tar.gz
eclipse.platform.swt-ce0d35fddef9fbe9ae46e24d75cd6f89802e0ab1.tar.xz
eclipse.platform.swt-ce0d35fddef9fbe9ae46e24d75cd6f89802e0ab1.zip
allow for the possibility that scroll bars can be null (forgot to turn the default back to both bars)
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
index 1edf7e1414..53bf2e89a0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
@@ -297,7 +297,7 @@ boolean checkData (TreeItem item, boolean redraw) {
}
static int checkStyle (int style) {
//TEMPORARY CODE
- //style |= SWT.H_SCROLL | SWT.V_SCROLL;
+ style |= SWT.H_SCROLL | SWT.V_SCROLL;
style |= SWT.NO_REDRAW_RESIZE | SWT.NO_BACKGROUND | SWT.DOUBLE_BUFFERED;
return checkBits (style, SWT.SINGLE, SWT.MULTI, 0, 0, 0, 0);
}