|
@@ -666,6 +666,9 @@ internal class CursesDriver : ConsoleDriver {
|
|
|
|
|
|
TerminalResized = terminalResized;
|
|
|
|
|
|
+ if (Environment.OSVersion.Platform == PlatformID.Win32NT) {
|
|
|
+ Clipboard = new FakeDriver.FakeClipboard ();
|
|
|
+ } else {
|
|
|
if (RuntimeInformation.IsOSPlatform (OSPlatform.OSX)) {
|
|
|
Clipboard = new MacOSXClipboard ();
|
|
|
} else {
|
|
@@ -675,6 +678,7 @@ internal class CursesDriver : ConsoleDriver {
|
|
|
Clipboard = new CursesClipboard ();
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
ClearContents ();
|
|
|
StartReportingMouseMoves ();
|