mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
Revert newlines and FakeOutput
This commit is contained in:
@@ -406,4 +406,4 @@ internal class ConsoleDriverFacade<T> : IConsoleDriver, IConsoleDriverFacade
|
||||
{
|
||||
// No need we will always draw when dirty
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,4 +39,4 @@ public interface IConsoleOutput : IDisposable
|
||||
/// <param name="col"></param>
|
||||
/// <param name="row"></param>
|
||||
void SetCursorPosition (int col, int row);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -192,4 +192,4 @@ internal class MainLoopCoordinator<T> : IMainLoopCoordinator
|
||||
// Wait for input infinite loop to exit
|
||||
_inputTask.Wait ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -277,4 +277,4 @@ public class NetOutput : IConsoleOutput
|
||||
{
|
||||
Console.Out.Write (visibility == CursorVisibility.Default ? EscSeqUtils.CSI_ShowCursor : EscSeqUtils.CSI_HideCursor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -447,4 +447,4 @@ public class OutputBuffer : IOutputBuffer
|
||||
Col = col;
|
||||
Row = row;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,4 +39,4 @@ internal class WindowSizeMonitor : IWindowSizeMonitor
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -125,4 +125,4 @@ internal class WindowsInput : ConsoleInput<WindowsConsole.InputRecord>, IWindows
|
||||
|
||||
SetConsoleMode (_inputHandle, _originalConsoleMode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -186,4 +186,4 @@ internal class WindowsInputProcessor : InputProcessor<InputRecord>
|
||||
|
||||
return current;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -381,4 +381,4 @@ internal partial class WindowsOutput : IConsoleOutput
|
||||
|
||||
_isDisposed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,9 +19,6 @@ internal class FakeOutput : IConsoleOutput
|
||||
/// <inheritdoc/>
|
||||
public Size GetWindowSize () { return Size; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public Size SetWindowSize (Size newSize) { return newSize; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public void SetCursorVisibility (CursorVisibility visibility) { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user