From 9da073e83863ef23ebebd612140c2e2e23fc666e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=94=E8=B7=91=E7=9A=84=E9=9D=A2=E6=9D=A1?= <1262327911@qq.com> Date: Sat, 8 Oct 2022 21:05:32 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E4=BF=AE=E6=94=B9=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/chart/hooks/useKeyboard.hook.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/chart/hooks/useKeyboard.hook.ts b/src/views/chart/hooks/useKeyboard.hook.ts index a2ee49c0..ff32b11e 100644 --- a/src/views/chart/hooks/useKeyboard.hook.ts +++ b/src/views/chart/hooks/useKeyboard.hook.ts @@ -186,11 +186,11 @@ export const useAddKeyboard = () => { keymaster(e, throttle(() => { chartEditStore.setUnLock(); return false }, throttleTime)) break; - // 锁定 ct+h + // 隐藏 ct+h case keyboardValue.hide: keymaster(e, throttle(() => { chartEditStore.setHide(); return false }, throttleTime)) break; - // 解除锁定 ct+sh+h + // 解除隐藏 ct+sh+h case keyboardValue.show: keymaster(e, throttle(() => { chartEditStore.setShow(); return false }, throttleTime)) break;