From 0a162ded846a2d6f6f833c0267cc0b66518412c1 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 8 Sep 2025 18:29:28 +0100 Subject: [PATCH] Go back to checking points from the front. We want to prefer a primary point (ie: a rectangle corner) to a secondary point (ie: a rounded-rect radius adjuster). --- pcbnew/tools/pcb_point_editor.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcbnew/tools/pcb_point_editor.cpp b/pcbnew/tools/pcb_point_editor.cpp index a80055a712..802d772822 100644 --- a/pcbnew/tools/pcb_point_editor.cpp +++ b/pcbnew/tools/pcb_point_editor.cpp @@ -2076,8 +2076,7 @@ int PCB_POINT_EDITOR::OnSelectionChange( const TOOL_EVENT& aEvent ) m_preview.FreeItems(); getView()->Add( &m_preview ); - RECT_RADIUS_TEXT_ITEM* radiusHelper = new RECT_RADIUS_TEXT_ITEM( pcbIUScale, - editFrame->GetUserUnits() ); + RECT_RADIUS_TEXT_ITEM* radiusHelper = new RECT_RADIUS_TEXT_ITEM( pcbIUScale, editFrame->GetUserUnits() ); m_preview.Add( radiusHelper ); getView()->Add( m_editPoints.get() );