Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2019-01-22 10:29:37 +0000
committerSarika Sinha2019-01-22 10:29:37 +0000
commit74e2e1ce5dcf9a60d61410f1634fa6044197b479 (patch)
tree058c1528d3f72d7401e427c8a2c8cba33d543009
parent1e13edbf3ba52a50bae74a261945d8b4f8217d60 (diff)
downloadeclipse.platform.debug-74e2e1ce5dcf9a60d61410f1634fa6044197b479.tar.gz
eclipse.platform.debug-74e2e1ce5dcf9a60d61410f1634fa6044197b479.tar.xz
eclipse.platform.debug-74e2e1ce5dcf9a60d61410f1634fa6044197b479.zip
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
index ea9958ce2..348e59a05 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -1151,7 +1151,7 @@ public class VariablesView extends AbstractDebugView implements IDebugContextLis
public void refreshDetailPaneContents() {
if (isDetailPaneVisible()) {
String currentPaneID = getCurrentPaneID();
- if (currentPaneID != null) {
+ if (currentPaneID != null && !fSashForm.isDisposed()) {
fLastSashWeights = fSashForm.getWeights();
}
fDetailPane.display(getCurrentSelection());

Back to the top