From 5a32e9942d2f0c9cc1158e8df9937697790ead33 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Tue, 15 Feb 2022 10:48:14 +0100 Subject: [PATCH] Don't use terminal mode in SshDeviceProcess by default Amends e2cb64471a59133d2b073b9d14bb0f270a27260b Change-Id: I61d49a9b738ff07ce5f632f6411dd49fc84b9f6a Reviewed-by: hjk --- src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp index da1281d7e66..efd48b278d4 100644 --- a/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp +++ b/src/plugins/projectexplorer/devicesupport/sshdeviceprocess.cpp @@ -70,8 +70,6 @@ SshDeviceProcess::SshDeviceProcess(const IDevice::ConstPtr &device, QObject *par : DeviceProcess(device, parent), d(std::make_unique(this)) { - setTerminalMode(QtcProcess::TerminalOn); - // Hack: we rely on fact that below slots were called before any other external slots connected // to this instance signals. That's why we don't re-emit them from inside our handlers since // these signal will reach all other external slots anyway after our handlers are done.