Handle properties dialog while creating an arc.
Fixes https://gitlab.com/kicad/code/kicad/issues/6215
This commit is contained in:
parent
2b5f7d594b
commit
8b295a3bd7
|
@ -1666,11 +1666,20 @@ bool DRAWING_TOOL::drawArc( const std::string& aTool, PCB_SHAPE** aGraphic, bool
|
||||||
}
|
}
|
||||||
else if( evt->IsAction( &PCB_ACTIONS::properties ) )
|
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 );
|
frame()->OnEditItemRequest( graphic );
|
||||||
m_view->Update( &preview );
|
m_view->Update( &preview );
|
||||||
frame()->SetMsgPanel( graphic );
|
frame()->SetMsgPanel( graphic );
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if( evt->IsClick( BUT_RIGHT ) )
|
else if( evt->IsClick( BUT_RIGHT ) )
|
||||||
|
|
Loading…
Reference in New Issue