Skip to content

Commit

Permalink
Fixed missing keyboard input support from launched processes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatyas committed Apr 19, 2018
1 parent 81ca884 commit a460208
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/backend/ProcessLauncher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a460208

Please sign in to comment.