From d92afa19053a5d3c18f1e90d6fb50c5814ba14eb Mon Sep 17 00:00:00 2001
From: hjk <qtc-committer@nokia.com>
Date: Mon, 16 Feb 2009 18:38:10 +0100
Subject: [PATCH]     Fixes:    debugger: set width and height of "terminal" to
 0 to avoid extra prompting

---
 src/plugins/debugger/gdbengine.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp
index 6f41c83379d..6b472e25577 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");
-- 
GitLab