Eeschema: fix a minor issue: when deleting a connection, the screen was not always redrawn, and the deleted objects were still shown, until the next screen redraw.

This commit is contained in:
jean-pierre charras 2016-05-20 10:09:08 +02:00
parent 47e2aab7de
commit 1e0a72df0b
1 changed files with 2 additions and 2 deletions

View File

@ -188,8 +188,8 @@ void SCH_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
screen->SetCurItem( NULL );
SetRepeatItem( NULL );
if( screen->TestDanglingEnds() )
m_canvas->Refresh();
screen->TestDanglingEnds();
m_canvas->Refresh();
break;