DRAWING_TOOL: show cursor when placing text

This commit is contained in:
Tomasz Wlostowski 2015-07-22 13:51:59 +02:00 committed by Maciej Suminski
parent afb6571249
commit 591f54f540
1 changed files with 0 additions and 2 deletions

View File

@ -1432,7 +1432,6 @@ int DRAWING_TOOL::placeTextPcb()
m_controls->CaptureCursor( true ); m_controls->CaptureCursor( true );
m_controls->SetAutoPan( true ); m_controls->SetAutoPan( true );
m_controls->ShowCursor( false );
preview.Add( text ); preview.Add( text );
} }
else else
@ -1451,7 +1450,6 @@ int DRAWING_TOOL::placeTextPcb()
preview.Remove( text ); preview.Remove( text );
m_controls->CaptureCursor( false ); m_controls->CaptureCursor( false );
m_controls->SetAutoPan( false ); m_controls->SetAutoPan( false );
m_controls->ShowCursor( true );
text = NULL; text = NULL;
} }