Browse Source

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
6.0.7
jean-pierre charras 5 years ago
parent
commit
5d099bb789
  1. 2
      pagelayout_editor/dialogs/properties_frame.cpp

2
pagelayout_editor/dialogs/properties_frame.cpp

@ -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…
Cancel
Save