Added Extract To feature to the context menu.

This commit is contained in:
johnoye742 2025-03-17 13:01:26 +01:00
parent c7a411d3de
commit bfcc605799

View file

@ -200,6 +200,7 @@ pub fn context_menu<'a>(
selected_types.retain(|t| !supported_archive_types.contains(t));
if selected_types.is_empty() {
children.push(menu_item(fl!("extract-here"), Action::ExtractHere).into());
children.push(menu_item(fl!("extract-to"), Action::ExtractTo).into());
}
children.push(menu_item(fl!("compress"), Action::Compress).into());
children.push(divider::horizontal::light().into());