mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-08-06 22:10:14 -03:00
The drop indicator top position was calculated using only getBoundingClientRect() offsets (post-CSS-transform viewport space) without accounting for container.scrollTop (pre-transform layout space). This caused the indicator to drift upward as the user scrolled down, eventually disappearing entirely. Fixed by adding container.scrollTop to the position calculation and only dividing the GBCR visual-diff portion by scale, since scrollTop is already in pre-transform coordinate space.