mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
Don't delete files when delete key is pressed while renaming something
This commit is contained in:
parent
0abe6513a7
commit
53dc639cae
@ -1349,7 +1349,10 @@ window.initgui = async function(){
|
||||
else{
|
||||
$selected_items = $(active_element).closest('.item-container').find('.item-selected');
|
||||
if($selected_items.length > 0){
|
||||
move_items($selected_items, trash_path);
|
||||
// Only delete the items if we're not renaming one.
|
||||
if ($selected_items.children('.item-name-editor-active').length === 0) {
|
||||
move_items($selected_items, trash_path);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user