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:
parent
47e2aab7de
commit
1e0a72df0b
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue