auto-save 2026-05-14 02:19 (~4)

This commit is contained in:
2026-05-14 02:20:00 +08:00
parent b98b4869bf
commit 66a7a818fc
4 changed files with 41 additions and 5 deletions

View File

@@ -831,6 +831,19 @@ api/main.py
<h2>变更记录</h2>
<p>这个记录不是 git log 的替代品。它记录“产品理解发生了什么变化、影响了哪些源码、你以后描述需求时该怎么说”。后续每次改功能都要补一条。</p>
<div class="changelog">
<article class="change">
<header>
<h3>2026-05-14 · 修复节点右下角缩放点击偏移</h3>
<span class="tag violet">Canvas</span>
<span class="tag blue">Resize</span>
</header>
<div class="body">
<p><strong>问题:</strong>点击或轻微拖动卡片右下角缩放把手时,节点会突然偏移/跳变,影响在无限画布上精调卡片大小。</p>
<p><strong>原因:</strong><code>getComputedStyle(nodeEl).width/height</code> 读到的已经是 ReactFlow 节点坐标下的布局尺寸,旧逻辑又除了一次 <code>zoom</code>,导致拖动起始宽高被放大或缩小;点击时 1px 级 pointermove 也会立刻写入错误宽高。</p>
<p><strong>改动:</strong>起始宽高直接使用 computed style只有鼠标移动量按 zoom 换算;增加 2px 点击死区,单纯点击缩放角不再改写节点尺寸。</p>
<p><strong>影响:</strong><code>web/components/nodes/resize-handle.tsx</code><code>docs/source-analysis.html</code></p>
</div>
</article>
<article class="change">
<header>
<h3>2026-05-14 · 缩略图 hover 原尺寸预览贴缩略图上边缘</h3>