Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2011-03-18 23:51:35 +0000
committerPawel Piech2011-03-18 23:51:35 +0000
commitd2ce1e70809f6eae3e6cc8624106fcc4cbf91b29 (patch)
treea6f7b6cfcc90c4af084ca32008796e106aa70e5d
parent4a4e78a0a168ceaa87a462ab5b099753184c4fba (diff)
downloadeclipse.platform.debug-d2ce1e70809f6eae3e6cc8624106fcc4cbf91b29.tar.gz
eclipse.platform.debug-d2ce1e70809f6eae3e6cc8624106fcc4cbf91b29.tar.xz
eclipse.platform.debug-d2ce1e70809f6eae3e6cc8624106fcc4cbf91b29.zip
Bug 333778 - [Compatibility] 'Breakpoints' view auto shows selection
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java2
1 files changed, 1 insertions, 1 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 0f038732f..99ab727ae 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
@@ -810,6 +810,7 @@ public class VariablesView extends AbstractDebugView implements IDebugContextLis
}
buildDetailPane(vertOrHoriz);
+ revealTreeSelection();
}
}
@@ -860,7 +861,6 @@ public class VariablesView extends AbstractDebugView implements IDebugContextLis
fSashForm.setMaximizedControl(null);
fSashForm.setWeights(getLastSashWeights());
refreshDetailPaneContents();
- revealTreeSelection();
fToggledDetailOnce = true;
}

Back to the top