mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
This reverts commit 5fdfd51209fc681e66657d6697ce031bc4319619, because 3 people complained about this change VS 1 person requesting the change to be made in the first place. Closes #18138 Reopens #17797 for discussion
This commit is contained in:
parent
184dfdc5ea
commit
220c7cd92e
@ -36,7 +36,7 @@ Settings::Settings() :
|
||||
_bAutoPosition(true),
|
||||
_uHistoryBufferSize(DEFAULT_NUMBER_OF_COMMANDS),
|
||||
_uNumberOfHistoryBuffers(DEFAULT_NUMBER_OF_BUFFERS),
|
||||
_bHistoryNoDup(true),
|
||||
_bHistoryNoDup(false),
|
||||
// ColorTable initialized below
|
||||
_uCodePage(ServiceLocator::LocateGlobals().uiOEMCP),
|
||||
_uScrollScale(1),
|
||||
@ -110,7 +110,7 @@ void Settings::ApplyDesktopSpecificDefaults()
|
||||
_bQuickEdit = TRUE;
|
||||
_uHistoryBufferSize = 50;
|
||||
_uNumberOfHistoryBuffers = 4;
|
||||
_bHistoryNoDup = true;
|
||||
_bHistoryNoDup = FALSE;
|
||||
|
||||
_renderSettings.ResetColorTable();
|
||||
|
||||
|
||||
@ -79,7 +79,7 @@ VOID InitRegistryValues(
|
||||
pStateInfo->CursorSize = 25;
|
||||
pStateInfo->HistoryBufferSize = 25;
|
||||
pStateInfo->NumberOfHistoryBuffers = 4;
|
||||
pStateInfo->HistoryNoDup = 1;
|
||||
pStateInfo->HistoryNoDup = 0;
|
||||
|
||||
// clang-format off
|
||||
if (pStateInfo->fIsV2Console)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user