Minor simplification in generic wxCaret
Only create wxMemoryDC if it's actually needed.
This commit is contained in:
parent
03bf61be3c
commit
9af728caea
@ -243,13 +243,10 @@ void wxCaret::Refresh()
|
||||
return;
|
||||
}
|
||||
|
||||
wxMemoryDC dcMem;
|
||||
dcMem.SelectObject(m_bmpUnderCaret);
|
||||
if ( m_blinkedOut )
|
||||
{
|
||||
// restore the old image
|
||||
dcWin.Blit(m_xOld, m_yOld, m_width, m_height,
|
||||
&dcMem, 0, 0);
|
||||
dcWin.DrawBitmap(m_bmpUnderCaret, m_xOld, m_yOld);
|
||||
m_xOld =
|
||||
m_yOld = -1;
|
||||
}
|
||||
@ -257,6 +254,7 @@ void wxCaret::Refresh()
|
||||
{
|
||||
if ( m_xOld == -1 && m_yOld == -1 )
|
||||
{
|
||||
wxMemoryDC dcMem(m_bmpUnderCaret);
|
||||
// save the part we're going to overdraw
|
||||
dcMem.Blit(0, 0, m_width, m_height,
|
||||
&dcWin, m_x, m_y);
|
||||
|
Loading…
Reference in New Issue
Block a user