Settings: correct default keybinds

This commit is contained in:
Liam Fitzgerald 2021-05-21 13:35:54 +10:00
parent 9f85cef0ff
commit 1ac01ef0f7
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -1,8 +1,8 @@
import f from 'lodash/fp';
import { RemoteContentPolicy, LeapCategories, leapCategories } from "~/types/local-update";
import { RemoteContentPolicy, LeapCategories, leapCategories } from '~/types/local-update';
import { useShortcut as usePlainShortcut } from '~/logic/lib/shortcutContext';
import { BaseState, createState } from '~/logic/state/base';
import {useCallback} from 'react';
import { useCallback } from 'react';
export interface ShortcutMapping {
cycleForward: string;
@ -12,7 +12,6 @@ export interface ShortcutMapping {
hideSidebar: string;
}
export interface SettingsState extends BaseState<SettingsState> {
display: {
backgroundType: 'none' | 'url' | 'color';
@ -76,7 +75,7 @@ const useSettingsState = createState<SettingsState>('Settings', {
keyboard: {
cycleForward: 'ctrl+\'',
cycleBack: 'ctrl+;',
navForward: 'ctrl+[',
navForward: 'ctrl+]',
navBack: 'ctrl+[',
hideSidebar: 'ctrl+\\'
}