diff --git a/frontend/src/canvas/tools.ts b/frontend/src/canvas/tools.ts index 686666a..e4ef093 100644 --- a/frontend/src/canvas/tools.ts +++ b/frontend/src/canvas/tools.ts @@ -329,7 +329,7 @@ export function activateTool( name: '', visible: true, text: '', - fontSize: 14, + fontSize: opts.fontSize!, fontFamily: 'Inter, system-ui, sans-serif', fill: '#ffd43b', // default yellow textColor: '#1a1a1a', diff --git a/frontend/src/components/ShortcutsHelp.tsx b/frontend/src/components/ShortcutsHelp.tsx index 7eb5526..7faaa85 100644 --- a/frontend/src/components/ShortcutsHelp.tsx +++ b/frontend/src/components/ShortcutsHelp.tsx @@ -48,7 +48,7 @@ export default function ShortcutsHelp({ shortcuts, onClose }: ShortcutsHelpProps { keys: 'H / 2', description: 'Pan tool' }, { keys: 'P / 3', description: 'Draw tool' }, { keys: 'T / 4', description: 'Text tool' }, - { keys: 'E / 5', description: 'Eraser tool' }, + { keys: 'S / 5', description: 'Sticky note tool' }, { keys: 'Space + drag', description: 'Pan canvas' }, { keys: 'Scroll', description: 'Zoom' }, { keys: 'Middle click + drag', description: 'Pan canvas' },