Fixes #4243 - ConsoleDriverFacade.CreateClipboard now honors FakeDriver.FakeBehaviors.UseFakeClipboard (#4244)

* updatd ConsoleDriverFacade.CreateClipboard to honor FakeDriver.FakeBehaviors.UseFakeClipboard

* Code cleanup of fake driver v2
This commit is contained in:
Tig
2025-09-12 12:32:31 -07:00
committed by GitHub
parent e869f842e3
commit 18b602e980
15 changed files with 292 additions and 331 deletions

View File

@@ -0,0 +1,8 @@
#nullable enable
namespace Terminal.Gui.Drivers;
#pragma warning disable CS1591
public interface IFakeDriverV2 : IConsoleDriver, IConsoleDriverFacade
{
void SetBufferSize (int width, int height);
}