From 41c20eaf755afd7c7f205f086056b5284e1c65e6 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Tue, 7 Apr 2026 15:59:14 -0400 Subject: [PATCH] feat: make hover tooltip follow the cursor Update hoverPoint on every mouse move while over a part, not just when the hovered part changes. Co-Authored-By: Claude Opus 4.6 (1M context) --- OpenNest/Controls/PlateView.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OpenNest/Controls/PlateView.cs b/OpenNest/Controls/PlateView.cs index f57373a..d2c8413 100644 --- a/OpenNest/Controls/PlateView.cs +++ b/OpenNest/Controls/PlateView.cs @@ -364,8 +364,10 @@ namespace OpenNest.Controls } if (hitPart != hoveredPart) - { hoveredPart = hitPart; + + if (hoveredPart != null) + { hoverPoint = e.Location; Invalidate(); }