Pcbnew: Fix a very minor bug ( The "Move exactly..." sometimes truncates the saved parameter floating point values during a session)
This commit is contained in:
parent
e978a17ccd
commit
0bd287b6d9
|
@ -182,9 +182,9 @@ void DIALOG_MOVE_EXACT::OnOkClick( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
// save the settings
|
// save the settings
|
||||||
m_options.polarCoords = m_polarCoords->GetValue();
|
m_options.polarCoords = m_polarCoords->GetValue();
|
||||||
m_xEntry->GetValue().ToDouble( &m_options.entry1 );
|
m_options.entry1 = DoubleValueFromString( UNSCALED_UNITS, m_xEntry->GetValue() );
|
||||||
m_yEntry->GetValue().ToDouble( &m_options.entry2 );
|
m_options.entry2 = DoubleValueFromString( UNSCALED_UNITS, m_yEntry->GetValue() );
|
||||||
m_rotEntry->GetValue().ToDouble( &m_options.entryRotation );
|
m_options.entryRotation = DoubleValueFromString( UNSCALED_UNITS, m_rotEntry->GetValue() );
|
||||||
|
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue