Windows: Fix crash when trying to copy nothing to clipboard (#10405)

Release Notes:

- N/A
This commit is contained in:
usr 2024-04-12 21:33:20 +02:00 committed by GitHub
parent 065f15e9a6
commit cb6d0639db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -687,8 +687,10 @@ impl Platform for WindowsPlatform {
}
fn write_to_clipboard(&self, item: ClipboardItem) {
let mut ctx = ClipboardContext::new().unwrap();
ctx.set_contents(item.text().to_owned()).unwrap();
if item.text.len() > 0 {
let mut ctx = ClipboardContext::new().unwrap();
ctx.set_contents(item.text().to_owned()).unwrap();
}
}
fn read_from_clipboard(&self) -> Option<ClipboardItem> {