Eeschema: fix bug when rotating (only using the Rotate hotkey) a field.

This commit is contained in:
jean-pierre charras 2011-09-28 09:38:58 +02:00
parent 25f95ec11f
commit 538b1ed314
1 changed files with 3 additions and 1 deletions

View File

@ -595,13 +595,15 @@ void SCH_EDIT_FRAME::OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition,
case SCH_FIELD_T:
cmd.SetId( ID_POPUP_SCH_ROTATE_FIELD );
wxPostEvent( this, cmd );
break;
case SCH_BITMAP_T:
cmd.SetId( ID_POPUP_SCH_ROTATE_IMAGE );
wxPostEvent( this, cmd );
break;
default:
;
break;
}
break;