Formatting.
This commit is contained in:
parent
d9229697d8
commit
07aea4339d
|
@ -386,8 +386,8 @@ bool DIALOG_CREATE_ARRAY::TransferDataFromWindow()
|
||||||
|
|
||||||
newCirc->m_centre.x = m_hCentre.GetValue();
|
newCirc->m_centre.x = m_hCentre.GetValue();
|
||||||
newCirc->m_centre.y = m_vCentre.GetValue();
|
newCirc->m_centre.y = m_vCentre.GetValue();
|
||||||
newCirc->m_angle =
|
newCirc->m_angle = DoubleValueFromString( EDA_UNITS::DEGREES,
|
||||||
DoubleValueFromString( EDA_UNITS::DEGREES, m_entryCircAngle->GetValue() );
|
m_entryCircAngle->GetValue() );
|
||||||
|
|
||||||
ok = ok && validateLongEntry(*m_entryCircCount, newCirc->m_nPts, _("point count"), errors);
|
ok = ok && validateLongEntry(*m_entryCircCount, newCirc->m_nPts, _("point count"), errors);
|
||||||
|
|
||||||
|
|
|
@ -312,8 +312,8 @@ bool DIALOG_IMPORT_GFX::TransferDataFromWindow()
|
||||||
|
|
||||||
// Set coordinates offset for import (offset is given in mm)
|
// Set coordinates offset for import (offset is given in mm)
|
||||||
m_importer->SetImportOffsetMM( m_origin );
|
m_importer->SetImportOffsetMM( m_origin );
|
||||||
m_scaleImport =
|
m_scaleImport = DoubleValueFromString( EDA_UNITS::UNSCALED,
|
||||||
DoubleValueFromString( EDA_UNITS::UNSCALED, m_textCtrlImportScale->GetValue() );
|
m_textCtrlImportScale->GetValue() );
|
||||||
|
|
||||||
// The line width is meant to be in pcbnew units, so we scale the import width before
|
// The line width is meant to be in pcbnew units, so we scale the import width before
|
||||||
// applying
|
// applying
|
||||||
|
|
Loading…
Reference in New Issue