Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-02-19 10:48:56 +0000
committerGerrit Code Review @ Eclipse.org2014-02-19 19:51:44 +0000
commit8dc7e337a02a0f0f5205a36a94787c143bbd3cef (patch)
tree960dace9c960a232f628e0ce5d6e252bd2283450
parentbaff9463c9f4a6571f2ee2a8f4444743e0f3bd67 (diff)
downloadrt.equinox.p2-8dc7e337a02a0f0f5205a36a94787c143bbd3cef.tar.gz
rt.equinox.p2-8dc7e337a02a0f0f5205a36a94787c143bbd3cef.tar.xz
rt.equinox.p2-8dc7e337a02a0f0f5205a36a94787c143bbd3cef.zip
Bug 428527 - Increase delay in p2 update dialog filtering to improve
perceived performance Change-Id: Iada5055e032cdef9e9d99782d660bcd1b6d20598 Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/DelayedFilterCheckboxTree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/DelayedFilterCheckboxTree.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/DelayedFilterCheckboxTree.java
index 25e86f26b..9bb1c51ba 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/DelayedFilterCheckboxTree.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/DelayedFilterCheckboxTree.java
@@ -34,7 +34,7 @@ import org.eclipse.ui.progress.WorkbenchJob;
*/
public class DelayedFilterCheckboxTree extends FilteredTree {
- private static final long FILTER_DELAY = 400;
+ private static final long FILTER_DELAY = 800;
public static final Object ALL_ITEMS_HACK = new Object();
@@ -365,4 +365,4 @@ public class DelayedFilterCheckboxTree extends FilteredTree {
}
return new Object[0];
}
-} \ No newline at end of file
+}

Back to the top