From e373af53f7b6781ecd6da1fed1577af2066388e9 Mon Sep 17 00:00:00 2001 From: John Beard Date: Thu, 31 Oct 2024 23:24:17 +0800 Subject: [PATCH] Pcbnew: normalise spelling of End/Mid Point Not sure which is better, but at least they should be the same. --- pcbnew/dialogs/dialog_shape_properties.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/dialogs/dialog_shape_properties.cpp b/pcbnew/dialogs/dialog_shape_properties.cpp index d778e52426..808b60c141 100644 --- a/pcbnew/dialogs/dialog_shape_properties.cpp +++ b/pcbnew/dialogs/dialog_shape_properties.cpp @@ -915,8 +915,8 @@ DIALOG_SHAPE_PROPERTIES::DIALOG_SHAPE_PROPERTIES( PCB_BASE_EDIT_FRAME* aParent, AddFieldToSizer( *aParent, *m_gbsLineByLengthAngle, 1, 3, _( "Length" ), ORIGIN_TRANSFORMS::NOT_A_COORD, false, m_boundCtrls ); AddFieldToSizer( *aParent, *m_gbsLineByLengthAngle, 2, 3, _( "Angle" ), ORIGIN_TRANSFORMS::NOT_A_COORD, true, m_boundCtrls ); - AddXYPointToSizer( *aParent, *m_gbsLineByMidEnd, 0, 0, _( "Midpoint" ), false, m_boundCtrls ); - AddXYPointToSizer( *aParent, *m_gbsLineByMidEnd, 0, 3, _( "Endpoint" ), false, m_boundCtrls ); + AddXYPointToSizer( *aParent, *m_gbsLineByMidEnd, 0, 0, _( "Mid Point" ), false, m_boundCtrls ); + AddXYPointToSizer( *aParent, *m_gbsLineByMidEnd, 0, 3, _( "End Point" ), false, m_boundCtrls ); m_geomSync = std::make_unique( m_workingCopy, m_boundCtrls );