Debugger: Suppose that 'xfce4-terminal' and 'mate-terminal' are actually the same thing as 'gnome-terminal'.

[DEVELOPMENT ENVIRONMENT]
* BUG: Debugger: Suppose that 'xfce4-terminal' and 'mate-terminal' are actually the same thing as 'gnome-terminal'.
This commit is contained in:
gambas 2022-04-18 03:16:05 +02:00
parent 30d605aad0
commit 887408b1ba

View file

@ -1252,14 +1252,11 @@ Private Sub Start(sCmd As String)
Case "konsole"
aExec = ["konsole", "--nofork", "--hold", "--name", Project.Name & "-output", "-e", aExec.Join(" ")]
Case "gnome-terminal"
aExec.Insert(["gnome-terminal", "--hide-menubar", "--maximize", "--wait", "--title=" & sTitle, "--"], 0)
Case "gnome-terminal", "xfce4-terminal", "mate-terminal"
aExec.Insert([sProg, "--hide-menubar", "--maximize", "--wait", "--title=" & sTitle, "--"], 0)
$aCmdStart.Add("h", 0)
$bGnomeTerminal = True
Case "xfce4-terminal", "mate-terminal"
aExec.Insert([sProg, "--hide-menubar", "--hide-toolbars", "--title=" & sTitle, "--hold", "-x"], 0)
Case "lxterminal"
aExec.Insert(["lxterminal", "-t", sTitle, "-e"], 0)