Fixed
- Quick Capture's "Also open in Editor" was resetting last-used tool and stroke width.
DetachedEditorWindowController.open(...)hadtool: .arrow/strokeWidth: 3as parameter defaults and unconditionally wrote them to the new EditorView on every open, which triggered thecurrentTooldidSet that persists globally — so opening the editor (Quick Capture, History → Open in Editor, Pin → Edit) silently overwrotelastUsedToolandcurrentStrokeWidthfor the entire app. Parameters are now optional withnildefault; the editor only overrides when a caller explicitly passes a value, otherwise the EditorView's own UserDefaults-backed initializers are honored. Refs #58.