Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Seelmann <mail@stefan-seelmann.de>2021-01-21 23:50:43 +0300
committerStefan Seelmann <mail@stefan-seelmann.de>2021-01-21 23:50:43 +0300
commitd3e331cd4c3ea9eebcba22ea3e5f4cfdd92fb37c (patch)
treee16751200038124bc405da1408a67d7c33e5e60f /plugins
parenta5fee6734ef8e87611677b3b04cc28afcf24936c (diff)
DIRSTUDIO-1119: Test entry editor with thousands of attributes/values
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ldapbrowser.common/src/main/java/org/apache/directory/studio/ldapbrowser/common/widgets/entryeditor/EntryEditorWidget.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ldapbrowser.common/src/main/java/org/apache/directory/studio/ldapbrowser/common/widgets/entryeditor/EntryEditorWidget.java b/plugins/ldapbrowser.common/src/main/java/org/apache/directory/studio/ldapbrowser/common/widgets/entryeditor/EntryEditorWidget.java
index 12b78cceb..57f3527fe 100644
--- a/plugins/ldapbrowser.common/src/main/java/org/apache/directory/studio/ldapbrowser/common/widgets/entryeditor/EntryEditorWidget.java
+++ b/plugins/ldapbrowser.common/src/main/java/org/apache/directory/studio/ldapbrowser/common/widgets/entryeditor/EntryEditorWidget.java
@@ -86,7 +86,7 @@ public class EntryEditorWidget extends ViewFormWidget
quickFilterWidget.createComposite( parent );
// create tree widget and viewer
- tree = new Tree( parent, SWT.MULTI | SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION
+ tree = new Tree( parent, SWT.VIRTUAL | SWT.MULTI | SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION
| SWT.HIDE_SELECTION );
GridData data = new GridData( GridData.FILL_BOTH );
data.widthHint = 450;