summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-02-16 18:38:10 +0100
committerhjk <qtc-committer@nokia.com>2009-02-17 17:42:32 +0100
commit7020acb36715a69f790c9ca4efc064a32f0feee1 (patch)
tree6d12316f83db8dac4af0a40bba94959b738246e9
parentb4a79218326b622a0c2dd8918fb6e2824583070c (diff)
downloadqt-creator-7020acb36715a69f790c9ca4efc064a32f0feee1.tar.gz
Fixes: debugger: set width and height of "terminal" to 0 to avoid
extra prompting
-rw-r--r--src/plugins/debugger/gdbengine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp
index 6f41c83379..6b472e2557 100644
--- a/src/plugins/debugger/gdbengine.cpp
+++ b/src/plugins/debugger/gdbengine.cpp
@@ -1588,6 +1588,8 @@ bool GdbEngine::startDebugger()
sendCommand("set unwindonsignal on");
sendCommand("pwd", GdbQueryPwd);
+ sendCommand("set width 0");
+ sendCommand("set height 0");
#ifdef Q_OS_MAC
sendCommand("-gdb-set inferior-auto-start-cfm off");