fixed: cursor is not positioned properly in find function (pcbnew)

This commit is contained in:
charras 2009-02-26 20:06:51 +00:00
parent 663959f4c8
commit 8593838f7a
2 changed files with 2 additions and 3 deletions

View File

@ -361,7 +361,7 @@ void WinEDA_DrawPanel::MouseTo( const wxPoint& Mouse )
/****************************************************/
/** Move the mouse cursor to the position "Mouse"
* @param Mouse = new mouse cursor position
* @param Mouse = mouse cursor position, in pixels units
*/
{
int x, y, xPpu, yPpu;

View File

@ -129,7 +129,6 @@ void WinEDA_BasePcbFrame::CursorGoto( const wxPoint& aPos )
// Put cursor on item position
DrawPanel->CursorOff( &dc );
screen->m_Curseur = aPos;
DrawPanel->MouseTo( screen->m_Curseur );
DrawPanel->MouseToCursorSchema();
DrawPanel->CursorOn( &dc );
}