Browse Source

Eeschema: remove assertion in OnOrient() when the current object cannot be oriented.

pull/7/head
Chris Pavlina 10 years ago
committed by Wayne Stambaugh
parent
commit
a2beb2ecad
  1. 4
      eeschema/schedit.cpp

4
eeschema/schedit.cpp

@ -1154,8 +1154,8 @@ void SCH_EDIT_FRAME::OnOrient( wxCommandEvent& aEvent )
break;
default:
wxFAIL_MSG( wxString::Format( wxT( "Schematic object type %s cannot be oriented." ),
GetChars( item->GetClass() ) ) );
// This object cannot be oriented.
;
}
if( item->GetFlags() == 0 )

Loading…
Cancel
Save