mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
Prevent display update during window resizing in TerminalProcess
This commit is contained in:
@@ -37,7 +37,7 @@ public class TerminalProcess() : Process("Terminal")
|
||||
|
||||
internal override void Tick()
|
||||
{
|
||||
if (window.Size != lastSize)
|
||||
if (window.Size != lastSize && !window.IsResizing)
|
||||
{
|
||||
lastSize = window.Size;
|
||||
UpdateDisplay();
|
||||
|
||||
Reference in New Issue
Block a user