mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix symbol editor drawing tool coord system.
This commit is contained in:
parent
8e40482451
commit
2ad05e34ea
@ -312,7 +312,7 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
|
||||
}
|
||||
else if( item && ( evt->IsAction( &ACTIONS::refreshPreview ) || evt->IsMotion() ) )
|
||||
{
|
||||
item->SetPosition( VECTOR2I( cursorPos.x, -cursorPos.y ) );
|
||||
item->SetPosition( VECTOR2I( cursorPos.x, cursorPos.y ) );
|
||||
m_view->ClearPreview();
|
||||
m_view->AddToPreview( item->Clone() );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user