Skip to content

Commit

Permalink
fix: shortcuts (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
lencx committed Feb 1, 2023
1 parent 272ef1c commit 8aeca25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions UPDATE_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/app/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 8aeca25

Please sign in to comment.