From bfcc605799ec5d2875bb268ddaa17db1c88e858e Mon Sep 17 00:00:00 2001 From: johnoye742 Date: Mon, 17 Mar 2025 13:01:26 +0100 Subject: [PATCH] Added Extract To feature to the context menu. --- src/menu.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/menu.rs b/src/menu.rs index dfd59db..04efec0 100644 --- a/src/menu.rs +++ b/src/menu.rs @@ -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());