Eeschema: bitmap editor dialog: some enhancements

This commit is contained in:
jean-pierre charras
2011-09-02 21:43:56 +02:00
parent c42f1446ec
commit 4da0bfc20b
7 changed files with 405 additions and 14 deletions
+2 -2
View File
@@ -236,7 +236,7 @@ void BITMAP_BASE::Mirror( bool aVertically )
if( m_image )
{
*m_image = m_image->Mirror( not aVertically );
*m_bitmap = wxBitmap( *m_image );
RebuildBitmap();
}
}
@@ -246,7 +246,7 @@ void BITMAP_BASE::Rotate( bool aRotateCCW )
if( m_image )
{
*m_image = m_image->Rotate90( aRotateCCW );
*m_bitmap = wxBitmap( *m_image );
RebuildBitmap();
}
}