From 0b9c6bade564433d9c3e0f9bd6ec9b3edda86711 Mon Sep 17 00:00:00 2001 From: Peng Xiao Date: Tue, 6 Dec 2022 18:07:57 +0800 Subject: [PATCH] fix: add 'c' to connector shortcut --- tldraw/apps/tldraw-logseq/src/lib/tools/LineTool.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tldraw/apps/tldraw-logseq/src/lib/tools/LineTool.tsx b/tldraw/apps/tldraw-logseq/src/lib/tools/LineTool.tsx index 623a45a7de5..ad32f6c70a7 100644 --- a/tldraw/apps/tldraw-logseq/src/lib/tools/LineTool.tsx +++ b/tldraw/apps/tldraw-logseq/src/lib/tools/LineTool.tsx @@ -5,7 +5,6 @@ import { LineShape, type Shape } from '../shapes' // @ts-expect-error maybe later export class LineTool extends TLLineTool { static id = 'line' - // not sure why "c" is not working in Logseq? - static shortcut = ['5'] + static shortcut = ['5', 'c'] Shape = LineShape }