diff --git a/UPDATE_LOG.md b/UPDATE_LOG.md index 0f28507d1..03f8e4ff9 100644 --- a/UPDATE_LOG.md +++ b/UPDATE_LOG.md @@ -6,6 +6,10 @@ Fix: - PNG and PDF buttons do not work (https://github.com/lencx/ChatGPT/issues/274) +Feat: + +- Copy a single record to the clipboard (https://github.com/lencx/ChatGPT/issues/191) + ## v0.10.1 Fix: diff --git a/src-tauri/src/app/menu.rs b/src-tauri/src/app/menu.rs index 5f4d2c86c..e2040afe2 100644 --- a/src-tauri/src/app/menu.rs +++ b/src-tauri/src/app/menu.rs @@ -162,9 +162,9 @@ pub fn init() -> Menu { let view_menu = Submenu::new( "View", Menu::new() - .add_item(CustomMenuItem::new("go_back".to_string(), "Go Back").accelerator("CmdOrCtrl+Left")) + .add_item(CustomMenuItem::new("go_back".to_string(), "Go Back").accelerator("CmdOrCtrl+[")) .add_item( - CustomMenuItem::new("go_forward".to_string(), "Go Forward").accelerator("CmdOrCtrl+Right"), + CustomMenuItem::new("go_forward".to_string(), "Go Forward").accelerator("CmdOrCtrl+]"), ) .add_item( CustomMenuItem::new("scroll_top".to_string(), "Scroll to Top of Screen")