Ensure the bitmap exported to the clipboard is valid.

Fixes #14808
https://gitlab.com/kicad/code/kicad/-/issues/14808
This commit is contained in:
Kuba Sunderland-Ober 2023-06-12 16:26:27 -04:00 committed by Seth Hillbrand
parent 6896148a10
commit e852d04043
1 changed files with 3 additions and 3 deletions

View File

@ -598,6 +598,9 @@ void SCH_EDIT_FRAME::DrawCurrentSheetToClipboard()
PrintPage( cfg );
// Deselect Bitmap from DC before using the bitmap
dc.SelectObject( wxNullBitmap );
{
wxLogNull doNotLog; // disable logging of failed clipboard actions
@ -611,9 +614,6 @@ void SCH_EDIT_FRAME::DrawCurrentSheetToClipboard()
}
}
// Deselect Bitmap from DC in order to delete the MemoryDC
dc.SelectObject( wxNullBitmap );
GRForceBlackPen( false );
screen->m_StartVisu = tmp_startvisu;