make closeOnExit: true the default (#599)

* make closeOnExit: true the default

* another very similar instance of _closeOnExit
This commit is contained in:
lstefano71 2019-05-09 16:17:33 +02:00 committed by Mike Griese
parent af7316c130
commit 32f4f7133c
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ Profile::Profile() :
_acrylicTransparency{ 0.5 },
_useAcrylic{ false },
_scrollbarState{ },
_closeOnExit{ false },
_closeOnExit{ true },
_padding{ DEFAULT_PADDING },
_icon{ }
{

View file

@ -19,7 +19,7 @@ namespace winrt::Microsoft::Terminal::Settings::implementation
_cursorShape{ CursorStyle::Vintage },
_cursorHeight{ DEFAULT_CURSOR_HEIGHT },
_useAcrylic{ false },
_closeOnExit{ false },
_closeOnExit{ true },
_tintOpacity{ 0.5 },
_padding{ DEFAULT_PADDING },
_fontFace{ DEFAULT_FONT_FACE },