patch: add has_file_clipboard field to PeerInfo

Signed-off-by: ClSlaid <cailue@bupt.edu.cn>
This commit is contained in:
ClSlaid
2023-10-29 20:49:43 +08:00
parent 79f6b5c181
commit 80200a9983
7 changed files with 33 additions and 5 deletions

View File

@@ -1019,6 +1019,13 @@ impl Connection {
let mut pi = PeerInfo {
username: username.clone(),
version: VERSION.to_owned(),
has_file_clipboard: cfg!(any(
target_os = "windows",
all(
feature = "unix-file-copy-paste",
any(target_os = "linux", target_os = "macos")
)
)),
..Default::default()
};

View File

@@ -153,6 +153,13 @@ pub fn new() -> GenericService {
fn displays_to_msg(displays: Vec<DisplayInfo>) -> Message {
let mut pi = PeerInfo {
has_file_clipboard: cfg!(any(
target_os = "windows",
all(
feature = "unix-file-copy-paste",
any(target_os = "linux", target_os = "macos")
)
)),
..Default::default()
};
pi.displays = displays.clone();