Skip to content

Commit

Permalink
fix: fix undo/redo hotkeys for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Feb 24, 2025
1 parent 8fdc41f commit bd2c3ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/core/stores/history-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,8 @@ export function useRegisterHistoryStore({
useHotkey({ meta: true, z: true }, back);
useHotkey({ meta: true, shift: true, z: true }, forward);
useHotkey({ meta: true, y: true }, forward);

useHotkey({ ctrl: true, z: true }, back);
useHotkey({ ctrl: true, shift: true, z: true }, forward);
useHotkey({ ctrl: true, y: true }, forward);
}

0 comments on commit bd2c3ab

Please sign in to comment.