mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
Implemented the ClipboardBase abstract class as suggested by @tznind.
This commit is contained in:
@@ -1100,7 +1100,11 @@ namespace Terminal.Gui {
|
||||
} else if (RuntimeInformation.IsOSPlatform (OSPlatform.OSX)) {
|
||||
Clipboard = new MacOSXClipboard ();
|
||||
} else {
|
||||
Clipboard = new CursesClipboard ();
|
||||
if (CursesDriver.Is_WSL_Platform ()) {
|
||||
Clipboard = new WSLClipboard ();
|
||||
}else{
|
||||
Clipboard = new CursesClipboard ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user