diff options
Diffstat (limited to 'src/widget')
-rw-r--r-- | src/widget/EmbeddedTerminal.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget/EmbeddedTerminal.qml b/src/widget/EmbeddedTerminal.qml index d8c89d4..192fcef 100644 --- a/src/widget/EmbeddedTerminal.qml +++ b/src/widget/EmbeddedTerminal.qml @@ -56,8 +56,8 @@ Item { initialWorkingDirectory: item.workingDirectory - shellProgram: 'sh' - shellProgramArgs: [ '-c', program ] + shellProgram: settings.terminal.launcherProgram + shellProgramArgs: [ settings.terminal.launcherArgument, program ] onFinished: { clearScreen(); |