From b4ccc15f98b8be128d2f17220ed21dce92b747bb Mon Sep 17 00:00:00 2001 From: nmemmert Date: Wed, 12 Aug 2026 13:43:19 -0400 Subject: [PATCH] Add XS pen size and make it the default Co-Authored-By: Claude Sonnet 4.6 --- src/App.jsx | 2 +- src/pages/DrawCanvas.jsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index e46216e..7bafed0 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1321,7 +1321,7 @@ const App = () => { ); // 'stacked' | 'split' | 'annotate' const [drawTool, setDrawTool] = useState('pen'); const [drawColor, setDrawColor] = useState('#0f172a'); - const [drawSize, setDrawSize] = useState(0.012); + const [drawSize, setDrawSize] = useState(0.003); const [activeStudyTab, setActiveStudyTab] = useState( () => localStorage.getItem('activeStudyTab') || 'notes', ); diff --git a/src/pages/DrawCanvas.jsx b/src/pages/DrawCanvas.jsx index c941dbe..ad76066 100644 --- a/src/pages/DrawCanvas.jsx +++ b/src/pages/DrawCanvas.jsx @@ -4,6 +4,7 @@ import { renderInkToCanvas } from '../utils/inkRender.js'; const INK_COLORS = ['#0f172a', '#ef4444', '#3b82f6', '#16a34a', '#f59e0b', '#a855f7']; const INK_SIZES = [ + { label: 'XS', value: 0.003 }, { label: 'S', value: 0.006 }, { label: 'M', value: 0.012 }, { label: 'L', value: 0.025 },