From ab06f832ea9524540d304796509c2ffdc200ed92 Mon Sep 17 00:00:00 2001 From: gambas Date: Wed, 23 Aug 2017 19:20:28 +0200 Subject: [PATCH] The IDE now does not run 'konsole' with arguments it does not understand anymore for no reason. [DEVELOPMENT ENVIRONMENT] * BUG: Do not run 'konsole' with arguments it does not understand anymore for no reason. --- app/src/gambas3/.src/Debug/Design.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/gambas3/.src/Debug/Design.module b/app/src/gambas3/.src/Debug/Design.module index fd31cec38..c80d7540f 100644 --- a/app/src/gambas3/.src/Debug/Design.module +++ b/app/src/gambas3/.src/Debug/Design.module @@ -967,7 +967,8 @@ Private Sub Start(sCmd As String) Select Case sProg Case "konsole" - aExec.Insert(["konsole", "--nofork", "--caption", sTitle, "--hold", "--name", Project.Name & "-output", "-e"], 0) + ' "--caption", sTitle + aExec = ["konsole", "--nofork", "--hold", "--name", Project.Name & "-output", "-e", aExec.Join(" ")] Case "gnome-terminal" ' gnome terminal cannot hold at end