Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamantha Chan2008-04-02 15:45:02 +0000
committerSamantha Chan2008-04-02 15:45:02 +0000
commit29e8060860d8456b5f1966af38f8ab0475272c46 (patch)
treef109c5cd8f4b54ca287d81f268279f72eb60ffcc
parentcfb07082e9db5643f1f8fe9f98dea52e3c9a1c1e (diff)
downloadeclipse.platform.debug-29e8060860d8456b5f1966af38f8ab0475272c46.tar.gz
eclipse.platform.debug-29e8060860d8456b5f1966af38f8ab0475272c46.tar.xz
eclipse.platform.debug-29e8060860d8456b5f1966af38f8ab0475272c46.zip
Bug 225366 - [Memory View] Rendering view pane is blank when view is re-opened. Added comment, fixed in installed(Viewer)
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/MemoryRetrievalProxy.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/MemoryRetrievalProxy.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/MemoryRetrievalProxy.java
index a1420a8bd..7addb1669 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/MemoryRetrievalProxy.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/MemoryRetrievalProxy.java
@@ -107,6 +107,8 @@ public class MemoryRetrievalProxy extends AbstractModelProxy implements IMemoryB
public void installed(Viewer viewer) {
super.installed(viewer);
+ // Set the initial selection when the proxy is installed
+ // Otherwise, rendering pane cannot be populated.
setInitialSelection();
}

Back to the top