diff --git a/src/App/TopPanel/ZoomButtons.tsx b/src/App/TopPanel/ZoomButtons.tsx index 8db4a8c..77ae440 100644 --- a/src/App/TopPanel/ZoomButtons.tsx +++ b/src/App/TopPanel/ZoomButtons.tsx @@ -22,7 +22,7 @@ export const ZoomButtons = memo(function ZoomButtons({showKeys, zoom, setZoom}: useEffect(() => { const onKeyDown = (e: KeyboardEvent) => { if (e.ctrlKey) { - if (e.key === "+") { + if (e.key === "+" || e.key === "=") { e.preventDefault(); e.stopPropagation(); onZoomIn();