Ensure the bitmap exported to the clipboard is valid.
Fixes #14808 https://gitlab.com/kicad/code/kicad/-/issues/14808
This commit is contained in:
parent
6896148a10
commit
e852d04043
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue