Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlvaro Sanchez-Leon2016-09-22 15:19:43 +0000
committerMarc Khouzam2016-10-31 19:22:42 +0000
commitcb27913c432da161e2ff325163250ba5092c3089 (patch)
tree340b43cefe84c28fad52569818f3ce1f07e29a84 /dsf-gdb/org.eclipse.cdt.dsf.gdb.ui
parentd04019eacd32b5adc07a535975529e24f179381f (diff)
downloadorg.eclipse.cdt-cb27913c432da161e2ff325163250ba5092c3089.tar.gz
org.eclipse.cdt-cb27913c432da161e2ff325163250ba5092c3089.tar.xz
org.eclipse.cdt-cb27913c432da161e2ff325163250ba5092c3089.zip
Bug 303808: DebuggerConsole shall not be automatically brought to top
The DebuggerConsoleView may be interfering with other views while bringing it to the top. This is not desirable as many users may not need to access the features of the GDB CLI. With this change the view will be shown but not automatically brought up to the top, so users can find it and select it as needed. Change-Id: I6a26f3a39d43732659d1db4e1aeb77f3c9e399d9 Signed-off-by: Alvaro Sanchez-Leon <alvsan09@gmail.com>
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.dsf.gdb.ui')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/console/GdbCliConsoleManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/console/GdbCliConsoleManager.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/console/GdbCliConsoleManager.java
index 15870f79389..d4874699941 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/console/GdbCliConsoleManager.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/console/GdbCliConsoleManager.java
@@ -198,8 +198,8 @@ public class GdbCliConsoleManager implements ILaunchesListener2 {
}
addConsole(console);
- // Make sure the Debugger Console view is visible
- getDebuggerConsoleManager().showConsoleView();
+ // Make sure the Debugger Console view is visible but do not force it to the top
+ getDebuggerConsoleManager().openConsoleView();
}
}

Back to the top