Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2006-01-27 16:39:21 +0000
committerKevin Barnes2006-01-27 16:39:21 +0000
commit8c323d6f441de6515be77fbe20f3c97af8622565 (patch)
tree2934b1614638fe7e8aad6955a2f0220537249d2e
parent0aada3397bcce53f01d796c0838004b42aca32c9 (diff)
downloadeclipse.platform.debug-8c323d6f441de6515be77fbe20f3c97af8622565.tar.gz
eclipse.platform.debug-8c323d6f441de6515be77fbe20f3c97af8622565.tar.xz
eclipse.platform.debug-8c323d6f441de6515be77fbe20f3c97af8622565.zip
Bug 125362 - Asynchronous Viewer should allow incremental updates
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ChildrenRequestMonitor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ChildrenRequestMonitor.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ChildrenRequestMonitor.java
index 7c5630bb3..2b5357c3b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ChildrenRequestMonitor.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/ChildrenRequestMonitor.java
@@ -52,7 +52,7 @@ class ChildrenRequestMonitor extends AsynchronousRequestMonitor implements IChil
fChildren.add(child);
}
- scheduleViewerUpdate(500);
+ scheduleViewerUpdate(250);
}
/* (non-Javadoc)

Back to the top