Handle properties dialog while creating an arc.

Fixes https://gitlab.com/kicad/code/kicad/issues/6215
This commit is contained in:
Jeff Young 2020-11-05 20:20:16 +00:00
parent 2b5f7d594b
commit 8b295a3bd7
1 changed files with 10 additions and 1 deletions

View File

@ -1666,11 +1666,20 @@ bool DRAWING_TOOL::drawArc( const std::string& aTool, PCB_SHAPE** aGraphic, bool
}
else if( evt->IsAction( &PCB_ACTIONS::properties ) )
{
if( firstPoint )
if( arcManager.GetStep() == KIGFX::PREVIEW::ARC_GEOM_MANAGER::SET_START )
{
graphic->SetAngle( 900, true );
frame()->OnEditItemRequest( graphic );
m_view->Update( &preview );
frame()->SetMsgPanel( graphic );
break;
}
else if( arcManager.GetStep() == KIGFX::PREVIEW::ARC_GEOM_MANAGER::SET_ANGLE )
{
frame()->OnEditItemRequest( graphic );
m_view->Update( &preview );
frame()->SetMsgPanel( graphic );
break;
}
}
else if( evt->IsClick( BUT_RIGHT ) )