Explorar el Código

fix: 禁用图像查看器右键菜单,解决缩放操作后弹出浏览器菜单问题 close #64

sw hace 1 semana
padre
commit
d55008c1c5
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/pages/view/components/viewers/stack.image.viewer.tsx

+ 1 - 0
src/pages/view/components/viewers/stack.image.viewer.tsx

@@ -659,6 +659,7 @@ const StackViewer = ({
   return (
     <div
       ref={elementRef}
+      onContextMenu={(e) => e.preventDefault()}
       style={{ width: '100%', height: '100%', backgroundColor: '#000' }}
     />
   );