mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
bugfix in WindowsDriver: removed the TerminalResized member that hides the inherited one from ConsoleDriver (#273)
This commit is contained in:
committed by
Miguel de Icaza
parent
2a27cbdea5
commit
a20d244d59
@@ -418,7 +418,6 @@ namespace Terminal.Gui {
|
||||
ManualResetEventSlim eventReady = new ManualResetEventSlim(false);
|
||||
ManualResetEventSlim waitForProbe = new ManualResetEventSlim(false);
|
||||
MainLoop mainLoop;
|
||||
Action TerminalResized;
|
||||
WindowsConsole.CharInfo [] OutputBuffer;
|
||||
int cols, rows;
|
||||
WindowsConsole winConsole;
|
||||
@@ -556,7 +555,7 @@ namespace Terminal.Gui {
|
||||
rows = inputEvent.WindowBufferSizeEvent.size.Y - 1;
|
||||
ResizeScreen ();
|
||||
UpdateOffScreen ();
|
||||
TerminalResized ();
|
||||
TerminalResized?.Invoke();
|
||||
break;
|
||||
}
|
||||
result = null;
|
||||
|
||||
Reference in New Issue
Block a user