mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
[PM-2718] Set nspasteboard.ConcealedType for clipboard on MacOS (#11025)
Enables the use of `exclude_from_clipboard` for macos, introduced in recent version of arboard
This commit is contained in:
parent
74ee0315c0
commit
20d83ab198
@ -37,8 +37,14 @@ fn clipboard_set(set: Set, _password: bool) -> Set {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
fn clipboard_set(set: Set, _password: bool) -> Set {
|
fn clipboard_set(set: Set, password: bool) -> Set {
|
||||||
|
use arboard::SetExtApple;
|
||||||
|
|
||||||
|
if password {
|
||||||
|
set.exclude_from_history()
|
||||||
|
} else {
|
||||||
set
|
set
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
Loading…
Reference in New Issue
Block a user