From 5c0ec9210c877c025ad0f0d3f4c32797ade7e989 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 19 Nov 2020 11:33:32 +0100 Subject: [PATCH] Fix initial directory when using konsole for Open Terminal Here Fixes: QTCREATORBUG-24947 Change-Id: I14f5b47ba2ad71005653faadd5e78fda9570196e Reviewed-by: Christian Kandeler --- src/libs/utils/consoleprocess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/consoleprocess.cpp b/src/libs/utils/consoleprocess.cpp index 084fe3f366a..7fe624ac2d4 100644 --- a/src/libs/utils/consoleprocess.cpp +++ b/src/libs/utils/consoleprocess.cpp @@ -157,7 +157,7 @@ Q_GLOBAL_STATIC_WITH_ARGS(const QVector, knownTerminals, ( {"rxvt", "", "-e"}, {"urxvt", "", "-e"}, {"xfce4-terminal", "", "-x"}, - {"konsole", "--separate", "-e"}, + {"konsole", "--separate --workdir .", "-e"}, {"gnome-terminal", "", "--"} }));