mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 02:15:31 +02:00
Bug 310376 - Local terminal connector needs to be upgraded to full terminal functionality provided by bug 248071
This commit is contained in:
parent
dd737acbbc
commit
726d1b5402
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ import org.eclipse.ui.PlatformUI;
|
|||
* {@link ProcessFactory}, which allows the process to run with a pseudo-terminal ({@link PTY}).
|
||||
*
|
||||
* @author Mirko Raner and others
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.1 $
|
||||
*/
|
||||
public class LocalTerminalLaunchDelegate extends LaunchConfigurationDelegate {
|
||||
|
||||
|
@ -144,7 +144,7 @@ public class LocalTerminalLaunchDelegate extends LaunchConfigurationDelegate {
|
|||
ProcessFactory factory = ProcessFactory.getFactory();
|
||||
if (PTY.isSupported()) {
|
||||
|
||||
spawner = factory.exec(commandLine, environment, workingDirectoryAsFile, new PTY());
|
||||
spawner = factory.exec(commandLine, environment, workingDirectoryAsFile, new PTY(false));
|
||||
}
|
||||
else {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue