Commit 7dc08c87 authored by Maciej Suminski's avatar Maciej Suminski
Browse files

Fixed switching back to selection tool using the right toolbar buttons in pcbnew (GAL).

parent 6fa2f060
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1374,7 +1374,7 @@ void PCB_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent )
    {
        std::string actionName = COMMON_ACTIONS::TranslateLegacyId( id );

        if( !actionName.empty() )
        if( !actionName.empty() || id == ID_NO_TOOL_SELECTED )
        {
            const int MAX_TRIALS = 10;
            int trials = 0;
@@ -1389,6 +1389,7 @@ void PCB_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent )
                m_toolManager.ProcessEvent( cancel );
            }

            if( !actionName.empty() )
                m_toolManager.RunAction( actionName );
        }
    }