~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to pcbnew/class_track.cpp

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
TRACK::TRACK( BOARD_ITEM* aParent, KICAD_T idtype ) :
125
125
    BOARD_CONNECTED_ITEM( aParent, idtype )
126
126
{
127
 
    m_Width = 0;
 
127
    m_Width = Millimeter2iu( 0.2 );
128
128
    m_Shape = S_SEGMENT;
129
129
    start   = end = NULL;
130
130
    SetDrillDefault();
187
187
    TRACK( aParent, PCB_VIA_T )
188
188
{
189
189
    SetShape( VIA_THROUGH );
 
190
    m_Width = Millimeter2iu( 0.5 );
190
191
}
191
192
 
192
193