libedit: Fix inverted Y axis on move command
Also clean up some code formatting issues
This commit is contained in:
parent
92fe201c5b
commit
49dd5d838c
|
@ -141,14 +141,14 @@ int LIB_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
|
|||
{
|
||||
case LIB_PIN_T:
|
||||
{
|
||||
item = pinTool->CreatePin( wxPoint( cursorPos.x, -cursorPos.y), part );
|
||||
item = pinTool->CreatePin( wxPoint( cursorPos.x, -cursorPos.y ), part );
|
||||
g_lastPinWeakPtr = item;
|
||||
break;
|
||||
}
|
||||
case LIB_TEXT_T:
|
||||
{
|
||||
LIB_TEXT* text = new LIB_TEXT( part );
|
||||
text->SetPosition( wxPoint( cursorPos.x, -cursorPos.y) );
|
||||
text->SetPosition( wxPoint( cursorPos.x, -cursorPos.y ) );
|
||||
text->SetTextSize( wxSize( m_frame->g_LastTextSize, m_frame->g_LastTextSize ) );
|
||||
text->SetTextAngle( m_frame->g_LastTextAngle );
|
||||
|
||||
|
@ -215,7 +215,7 @@ int LIB_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
|
|||
|
||||
else if( item && ( evt->IsAction( &ACTIONS::refreshPreview ) || evt->IsMotion() ) )
|
||||
{
|
||||
static_cast<LIB_ITEM*>( item )->SetPosition( wxPoint( cursorPos.x, -cursorPos.y) );
|
||||
static_cast<LIB_ITEM*>( item )->SetPosition( wxPoint( cursorPos.x, -cursorPos.y ) );
|
||||
m_view->ClearPreview();
|
||||
m_view->AddToPreview( item->Clone() );
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ LIB_MOVE_TOOL::LIB_MOVE_TOOL() :
|
|||
bool LIB_MOVE_TOOL::Init()
|
||||
{
|
||||
EE_TOOL_BASE::Init();
|
||||
|
||||
|
||||
//
|
||||
// Add move actions to the selection tool menu
|
||||
//
|
||||
|
@ -159,7 +159,9 @@ int LIB_MOVE_TOOL::Main( const TOOL_EVENT& aEvent )
|
|||
}
|
||||
else if( selection.Size() == 1 && m_frame->GetMoveWarpsCursor() )
|
||||
{
|
||||
m_anchorPos = lib_item->GetPosition();
|
||||
wxPoint itemPos = lib_item->GetPosition();
|
||||
m_anchorPos = wxPoint( itemPos.x, -itemPos.y );
|
||||
|
||||
getViewControls()->WarpCursor( m_anchorPos, true, true );
|
||||
m_cursor = m_anchorPos;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue