diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-08-17 21:21:37 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-08-18 08:33:40 +0200 |
commit | 5be649b3d2089e59fbbb4eedaecfdb6283eaa03f (patch) | |
tree | c3cbf8836bf98b241f1aaee427b1bca9e2e387c2 /video-ps3eye | |
parent | 0bb2cfa95c3ca169059892fe78bf11747e56fb0f (diff) |
video/ps3eye: workaround qt bug
Diffstat (limited to 'video-ps3eye')
-rw-r--r-- | video-ps3eye/module.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/video-ps3eye/module.cpp b/video-ps3eye/module.cpp index cdc06974..28deedc8 100644 --- a/video-ps3eye/module.cpp +++ b/video-ps3eye/module.cpp @@ -116,6 +116,8 @@ ps3eye_camera::ps3eye_camera() wrapper.setWorkingDirectory(library_path); #ifdef _WIN32 wrapper.setProgram("\"ps3eye-subprocess.exe\""); + // workaround apparent Qt 5.15.2 bug -sh 20210817 + wrapper.setProcessChannelMode(QProcess::ForwardedChannels); #else wrapper.setProgram("ps3eye-subprocess"); #endif |