pl_editor: fix a typo that copy the X repeat prm into the Y repeat prm
Fixes #7078 https://gitlab.com/kicad/code/kicad/issues/7078
This commit is contained in:
parent
76cc7b98a7
commit
5d099bb789
|
@ -304,7 +304,7 @@ void PROPERTIES_FRAME::CopyPrmsFromItemToPanel( WS_DATA_ITEM* aItem )
|
|||
From_User_Unit( EDA_UNITS::MILLIMETRES, aItem->m_IncrementVector.x ) );
|
||||
|
||||
m_textCtrlStepYBinder.SetDoubleValue(
|
||||
From_User_Unit( EDA_UNITS::MILLIMETRES, aItem->m_IncrementVector.x ) );
|
||||
From_User_Unit( EDA_UNITS::MILLIMETRES, aItem->m_IncrementVector.y ) );
|
||||
|
||||
// The number of widgets was modified, so recalculate sizers
|
||||
m_swItemProperties->Layout();
|
||||
|
|
Loading…
Reference in New Issue