Commit 42684489 authored by Maciej Suminski's avatar Maciej Suminski
Browse files

Minor fixes (check for net codes size for ratsnest, cursor coordinates are not...

Minor fixes (check for net codes size for ratsnest, cursor coordinates are not always shown as if the cursor was snapped).
parent dbc4a8f2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1023,7 +1023,6 @@ wxPoint EDA_DRAW_FRAME::GetCrossHairPosition( bool aInvertY ) const
    if( IsGalCanvasActive() )
    {
        VECTOR2I cursor = GetGalCanvas()->GetViewControls()->GetCursorPosition();
        cursor = GetGalCanvas()->GetGAL()->GetGridPoint( cursor );

        return wxPoint( cursor.x, cursor.y );
    }
+0 −2
Original line number Diff line number Diff line
@@ -216,8 +216,6 @@ public:
    bool m_show_microwave_tools;
    bool m_show_layer_manager_tools;


public:
    PCB_EDIT_FRAME( wxWindow* father, const wxString& title,
                    const wxPoint& pos, const wxSize& size,
                    long style = KICAD_DEFAULT_DRAWFRAME_STYLE );
+1 −1
Original line number Diff line number Diff line
@@ -1024,7 +1024,7 @@ void RN_DATA::updateNet( int aNetCode )
{
    assert( aNetCode < (int) m_nets.size() );

    if( aNetCode < 1 )
    if( aNetCode < 1 || aNetCode > m_nets.size() )
        return;

    m_nets[aNetCode].ClearSimple();