From 7e134ccf245fdf9a8f0cae71a12fa122d4863fa2 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Mon, 24 May 2021 21:29:17 -0400 Subject: [PATCH] Bug 562776: Fix enablement variable for ConPTY Change-Id: I46a6a64ddd1ca74a4466ea13ef8a942cd83c1853 --- .../src/org/eclipse/cdt/utils/pty/PTY.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core.native/src/org/eclipse/cdt/utils/pty/PTY.java b/core/org.eclipse.cdt.core.native/src/org/eclipse/cdt/utils/pty/PTY.java index 27749029837..cf47a6a1169 100644 --- a/core/org.eclipse.cdt.core.native/src/org/eclipse/cdt/utils/pty/PTY.java +++ b/core/org.eclipse.cdt.core.native/src/org/eclipse/cdt/utils/pty/PTY.java @@ -295,7 +295,7 @@ public class PTY { // Force conpty off by default // NOTE: to invert the default, the presence of the property must be checked too, not // just the getBoolean return! - if (!Boolean.getBoolean("org.eclipse.cdt.core.winpty_console_mode")) { //$NON-NLS-1$ + if (!Boolean.getBoolean("org.eclipse.cdt.core.conpty_enabled")) { //$NON-NLS-1$ isConPTY = IS_CONPTY.CONPTY_NO; }