drawNoteAtWithBorder is drawNoteAt with an explicit border-color override (used during the zoom transition to avoid the highlight flashing mid-anim).
(c *Canvas, rect Rect, n *Note, textMode TextStyleMode, borderColor RGB)
| 106 | // drawNoteAtWithBorder is drawNoteAt with an explicit border-color override |
| 107 | // (used during the zoom transition to avoid the highlight flashing mid-anim). |
| 108 | func drawNoteAtWithBorder(c *Canvas, rect Rect, n *Note, textMode TextStyleMode, borderColor RGB) { |
| 109 | drawNoteInternal(c, rect, n, true, textMode, &borderColor) |
| 110 | } |
| 111 | |
| 112 | // drawNoteFrame draws only the frame (tape, borders, title row, separator, |
| 113 | // inner flourish, fold glyph) — NOT the body. Used in edit mode where a |
no test coverage detected