Merge pull request #1632 from jasonrhansen/move-to

feat: add 'Move to' and 'Copy to' to Edit menu
This commit is contained in:
Levi Portenier 2026-02-17 12:06:25 -07:00 committed by GitHub
commit eda673a258
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -622,6 +622,8 @@ pub fn menu_bar<'a>(
vec![
menu_button_optional(fl!("cut"), Action::Cut, selected > 0),
menu_button_optional(fl!("copy"), Action::Copy, selected > 0),
menu_button_optional(fl!("move-to"), Action::MoveTo, selected > 0),
menu_button_optional(fl!("copy-to"), Action::CopyTo, selected > 0),
menu_button_optional(fl!("paste"), Action::Paste, selected > 0),
menu::Item::Button(fl!("select-all"), None, Action::SelectAll),
menu::Item::Divider,