Browse Source

pcad2kicadpcb_plugin: unlock orientation of footprint fields

pull/5/merge
Eldar Khayrullin 8 years ago
committed by Maciej Suminski
parent
commit
6f0e0826fa
  1. 2
      pcbnew/pcad2kicadpcb_plugin/pcb_module.cpp

2
pcbnew/pcad2kicadpcb_plugin/pcb_module.cpp

@ -534,6 +534,7 @@ void PCB_MODULE::AddToBoard()
r = m_name.textRotation - m_rotation;
ref_text->SetTextAngle( r );
ref_text->SetUnlocked( true );
ref_text->SetItalic( m_name.isItalic );
ref_text->SetThickness( m_name.textstrokeWidth );
@ -557,6 +558,7 @@ void PCB_MODULE::AddToBoard()
r = m_value.textRotation - m_rotation;
val_text->SetTextAngle( r );
val_text->SetUnlocked( true );
val_text->SetItalic( m_value.isItalic );
val_text->SetThickness( m_value.textstrokeWidth );

Loading…
Cancel
Save