wpf: Bump the history length to 9001 instead of 1000 (#15129)

This was an oversight in the original implementation.
This commit is contained in:
Dustin L. Howett
2023-04-06 15:03:12 -05:00
committed by GitHub
parent c7498a4269
commit de09671d8a

View File

@@ -222,7 +222,7 @@ HRESULT HwndTerminal::Initialize()
_renderEngine = std::move(dxEngine);
_terminal->Create({ 80, 25 }, 1000, *_renderer);
_terminal->Create({ 80, 25 }, 9001, *_renderer);
_terminal->SetWriteInputCallback([=](std::wstring_view input) noexcept { _WriteTextToConnection(input); });
localPointerToThread->EnablePainting();