mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-26 06:58:56 -06:00
Merge pull request #13 from HeyPuter/ignore-delete-when-renaming-files
Don't delete files when delete key is pressed while renaming something
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user