Partially implement copy and move, debounce events
This commit is contained in:
parent
a2560db6ba
commit
244291be79
7 changed files with 311 additions and 131 deletions
|
|
@ -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!(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue