We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81db3e5 commit 7619146Copy full SHA for 7619146
src-tauri/src/api/clipboard.rs
@@ -33,6 +33,8 @@ pub async fn write_and_paste(
33
34
match content_type.as_str() {
35
"text" => clipboard.write_text(content).map_err(|e| e.to_string())?,
36
+ "link" => clipboard.write_text(content).map_err(|e| e.to_string())?,
37
+ "color" => clipboard.write_text(content).map_err(|e| e.to_string())?,
38
"image" => {
39
clipboard.write_image_base64(content).map_err(|e| e.to_string())?;
40
}
0 commit comments