Trigger scroll on scrolled selection (#5798)

## Summary of the Pull Request
We accidentally missed switching one `TriggerRedrawAll` to `TriggerScroll`. This does that.

## References
#5185 - applies logic from this PR

## PR Checklist
* [X] Closes #5756

## Validation Steps Performed
Followed bug repro steps.
This commit is contained in:
Carlos Zamora 2020-05-08 14:48:23 -07:00 committed by GitHub
parent 38472719d5
commit 75752aed80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,7 +167,7 @@ void Terminal::SelectNewRegion(const COORD coordStart, const COORD coordEnd)
if (notifyScrollChange)
{
_buffer->GetRenderTarget().TriggerRedrawAll();
_buffer->GetRenderTarget().TriggerScroll();
_NotifyScrollEvent();
}