Skip to content

Commit

Permalink
changed shortcut key list order
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Oct 15, 2023
1 parent 920dfeb commit a943164
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions src/renderer/MainImports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -943,11 +943,35 @@ window.shortcutsFunctions = [
key2: "",
},
{
command: "readerSettings",
name: "Open/Close Reader Settings",
key1: "q",
command: "largeScroll",
name: "Bigger Scroll (Scroll B, Shift+key for reverse)",
key1: " ",
key2: "",
},
{
command: "scrollUp",
name: "Scroll Up (Scroll A)",
key1: "w",
key2: "ArrowUp",
},
{
command: "scrollDown",
name: "Scroll Down (Scroll A)",
key1: "s",
key2: "ArrowDown",
},
{
command: "prevPage",
name: "Previous Page",
key1: "a",
key2: "ArrowLeft",
},
{
command: "nextPage",
name: "Next Page",
key1: "d",
key2: "ArrowRight",
},
{
command: "nextChapter",
name: "Next Chapter",
Expand Down Expand Up @@ -979,35 +1003,11 @@ window.shortcutsFunctions = [
key2: "",
},
{
command: "largeScroll",
name: "Bigger Scroll, Scroll B (Shift+key for reverse)",
key1: " ",
command: "readerSettings",
name: "Open/Close Reader Settings",
key1: "q",
key2: "",
},
{
command: "scrollUp",
name: "Scroll Up",
key1: "w",
key2: "ArrowUp",
},
{
command: "scrollDown",
name: "Scroll Down",
key1: "s",
key2: "ArrowDown",
},
{
command: "prevPage",
name: "Previous Page",
key1: "a",
key2: "ArrowLeft",
},
{
command: "nextPage",
name: "Next Page",
key1: "d",
key2: "ArrowRight",
},
{
command: "showHidePageNumberInZen",
name: "Show/Hide Page number in Zen Mode",
Expand Down

0 comments on commit a943164

Please sign in to comment.