Sophie

Sophie

distrib > Mageia > 8 > armv7hl > by-pkgid > 538963aae0a175c756020dcd2437bb07 > files > 1

edb-debugger-1.2.0-2.mga8.src.rpm

From f053b4be6fafaa1b366f1b0f9765c829988998c3 Mon Sep 17 00:00:00 2001
From: Evan Teran <evan.teran@gmail.com>
Date: Sat, 11 Apr 2020 20:08:43 -0400
Subject: [PATCH] Fix for issue #757

---
 src/Debugger.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Debugger.cpp b/src/Debugger.cpp
index c6850997..caa8e8a4 100644
--- a/src/Debugger.cpp
+++ b/src/Debugger.cpp
@@ -628,8 +628,9 @@ QString Debugger::createTty() {
 						  << "--title" << tr("edb output");
 			} else if (command_info.fileName() == "konsole") {
 				proc_args << "--hide-menubar"
-						  << "--title" << tr("edb output") << "--nofork"
-						  << "-hold";
+						  << "--title" << tr("edb output")
+						  << "--nofork"
+						  << "--hold";
 			} else {
 				proc_args << "-title" << tr("edb output") << "-hold";
 			}