Make primary clipboard Linux only (#11843)

I guess only Linux supports the primary clipboard.

Release Notes:

- N/A
This commit is contained in:
张小白 2024-05-16 01:44:47 +08:00 committed by GitHub
parent 1c62839295
commit 4ae3396253
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 42 additions and 37 deletions

View file

@ -817,8 +817,6 @@ impl Platform for MacPlatform {
}
}
fn write_to_primary(&self, _item: ClipboardItem) {}
fn write_to_clipboard(&self, item: ClipboardItem) {
let state = self.0.lock();
unsafe {
@ -856,10 +854,6 @@ impl Platform for MacPlatform {
}
}
fn read_from_primary(&self) -> Option<ClipboardItem> {
None
}
fn read_from_clipboard(&self) -> Option<ClipboardItem> {
let state = self.0.lock();
unsafe {