mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-01 15:03:11 +02:00
Fix performance related to having 100s of requests (#123)
This commit is contained in:
16
src-web/hooks/useSyncZoomSetting.ts
Normal file
16
src-web/hooks/useSyncZoomSetting.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { useHotKey } from './useHotKey';
|
||||
import { useListenToTauriEvent } from './useListenToTauriEvent';
|
||||
import { useZoom } from './useZoom';
|
||||
|
||||
export function useSyncZoomSetting() {
|
||||
// Handle Zoom.
|
||||
// Note, Mac handles it in the app menu, so need to also handle keyboard
|
||||
// shortcuts for Windows/Linux
|
||||
const zoom = useZoom();
|
||||
useHotKey('app.zoom_in', zoom.zoomIn);
|
||||
useListenToTauriEvent('zoom_in', zoom.zoomIn);
|
||||
useHotKey('app.zoom_out', zoom.zoomOut);
|
||||
useListenToTauriEvent('zoom_out', zoom.zoomOut);
|
||||
useHotKey('app.zoom_reset', zoom.zoomReset);
|
||||
useListenToTauriEvent('zoom_reset', zoom.zoomReset);
|
||||
}
|
||||
Reference in New Issue
Block a user