From a460208d455235771f8707989b5275d18bad1f2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Thu, 5 Apr 2018 18:03:38 +0200 Subject: [PATCH] Fixed missing keyboard input support from launched processes --- src/backend/ProcessLauncher.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/ProcessLauncher.cpp b/src/backend/ProcessLauncher.cpp index 3f8c91f15..2e21161a2 100644 --- a/src/backend/ProcessLauncher.cpp +++ b/src/backend/ProcessLauncher.cpp @@ -93,6 +93,7 @@ void ProcessLauncher::runProcess(const QString& command) // run the command process->setProcessChannelMode(QProcess::ForwardedChannels); + process->setInputChannelMode(QProcess::ForwardedInputChannel); process->start(command, QProcess::ReadOnly); // wait