mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-11 02:16:00 +02:00
fix: sciter, check, has_file_clipboard (#11666)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
parent
6ffbcd1375
commit
bd85e9c322
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class Header: Reactor.Component {
|
||||||
if (handler.version_cmp(pi.version, '1.2.4') < 0) {
|
if (handler.version_cmp(pi.version, '1.2.4') < 0) {
|
||||||
is_file_copy_paste_supported = is_win && pi.platform == "Windows";
|
is_file_copy_paste_supported = is_win && pi.platform == "Windows";
|
||||||
} else {
|
} else {
|
||||||
is_file_copy_paste_supported = handler.has_file_clipboard() && pi.platform_additions.has_file_clipboard;
|
is_file_copy_paste_supported = handler.has_file_clipboard() && pi.platform_additions?.has_file_clipboard;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <popup>
|
return <popup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue