Expose Switch Arc Posture in context menu.

This commit is contained in:
Alex 2022-10-07 08:28:05 +03:00
parent d26b59a0bf
commit 165654f114
1 changed files with 7 additions and 0 deletions

View File

@ -217,6 +217,12 @@ bool DRAWING_TOOL::Init()
|| m_mode == MODE::GRAPHIC_POLYGON );
};
auto arcToolActive =
[this]( const SELECTION& aSel )
{
return m_mode == MODE::ARC;
};
auto viaToolActive =
[this]( const SELECTION& aSel )
{
@ -235,6 +241,7 @@ bool DRAWING_TOOL::Init()
// tool-specific actions
ctxMenu.AddItem( PCB_ACTIONS::closeOutline, canCloseOutline, 200 );
ctxMenu.AddItem( PCB_ACTIONS::deleteLastPoint, canUndoPoint, 200 );
ctxMenu.AddItem( PCB_ACTIONS::arcPosture, arcToolActive, 200 );
ctxMenu.AddCheckItem( PCB_ACTIONS::toggleHV45Mode, SELECTION_CONDITIONS::ShowAlways, 250 );
ctxMenu.AddSeparator( 500 );