mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-15 16:04:19 +02:00
Add browser forward/back hotkeys (#155)
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
import { Divider, Stack } from '@mantine/core';
|
||||
import isElectron from 'is-electron';
|
||||
import { WindowHotkeySettings } from './window-hotkey-settings';
|
||||
import { HotkeyManagerSettings } from '/@/renderer/features/settings/components/hotkeys/hotkey-manager-settings';
|
||||
|
||||
export const HotkeysTab = () => {
|
||||
return (
|
||||
<Stack spacing="md">
|
||||
<WindowHotkeySettings />
|
||||
<Divider />
|
||||
{isElectron() && (
|
||||
<>
|
||||
<WindowHotkeySettings />
|
||||
<Divider />
|
||||
</>
|
||||
)}
|
||||
<HotkeyManagerSettings />
|
||||
</Stack>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user