eeschema: fixed screen was not refresh the first time one leave a sheet

This commit is contained in:
charras 2009-02-27 07:54:51 +00:00
parent 3441ea89e9
commit 859a4f72d3
1 changed files with 2 additions and 1 deletions

View File

@ -347,8 +347,9 @@ static bool UpdateScreenFromSheet( WinEDA_SchematicFrame* frame )
} }
else else
{ {
frame->DrawPanel->Refresh();
frame->DrawPanel->MouseToCursorSchema(); frame->DrawPanel->MouseToCursorSchema();
} }
frame->DrawPanel->Refresh();
return true; return true;
} }