Partially implement copy and move, debounce events

This commit is contained in:
Jeremy Soller 2024-03-20 11:54:37 -06:00
parent a2560db6ba
commit 244291be79
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
7 changed files with 311 additions and 131 deletions

View file

@ -61,13 +61,13 @@ impl ClipboardCopy {
match Url::from_file_path(path) {
Ok(url) => {
let url_str = url.to_string();
let url_str = url.as_ref();
text_uri_list.push_str(&url_str);
text_uri_list.push_str(url_str);
text_uri_list.push_str(cr_nl);
x_special_gnome_copied_files.push('\n');
x_special_gnome_copied_files.push_str(&url_str);
x_special_gnome_copied_files.push_str(url_str);
}
Err(()) => {
log::warn!(