1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Bug 562776: Fix enablement variable for ConPTY

Change-Id: I46a6a64ddd1ca74a4466ea13ef8a942cd83c1853
This commit is contained in:
Jonah Graham 2021-05-24 21:29:17 -04:00
parent fcbf0b6963
commit 7e134ccf24

View file

@ -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;
}