Code formatting.
This commit is contained in:
parent
e37b07a6fc
commit
b8295b6af8
|
@ -90,8 +90,8 @@ bool EDIT_TOOL::Init()
|
|||
|
||||
// Footprint actions
|
||||
m_selectionTool->AddMenuItem( COMMON_ACTIONS::editFootprintInFpEditor,
|
||||
SELECTION_CONDITIONS::OnlyType ( PCB_MODULE_T ) &&
|
||||
SELECTION_CONDITIONS::Count ( 1 ) );
|
||||
SELECTION_CONDITIONS::OnlyType( PCB_MODULE_T ) &&
|
||||
SELECTION_CONDITIONS::Count( 1 ) );
|
||||
|
||||
m_offset.x = 0;
|
||||
m_offset.y = 0;
|
||||
|
|
|
@ -352,7 +352,7 @@ bool SELECTION_TOOL::selectCursor( const VECTOR2I& aWhere, bool aOnDrag )
|
|||
else if( collector.GetCount() > 1 )
|
||||
{
|
||||
if( aOnDrag )
|
||||
Wait ( TOOL_EVENT( TC_ANY, TA_MOUSE_UP, BUT_LEFT ) );
|
||||
Wait( TOOL_EVENT( TC_ANY, TA_MOUSE_UP, BUT_LEFT ) );
|
||||
|
||||
item = disambiguationMenu( &collector );
|
||||
|
||||
|
@ -507,6 +507,7 @@ SELECTION_LOCK_FLAGS SELECTION_TOOL::CheckLock()
|
|||
return SELECTION_UNLOCKED;
|
||||
}
|
||||
|
||||
|
||||
int SELECTION_TOOL::CursorSelection( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
selectCursor( getView()->ToWorld( getViewControls()->GetMousePosition() ) );
|
||||
|
@ -522,6 +523,7 @@ int SELECTION_TOOL::ClearSelection( const TOOL_EVENT& aEvent )
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int SELECTION_TOOL::SelectItem( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
// Check if there is an item to be selected
|
||||
|
@ -538,6 +540,7 @@ int SELECTION_TOOL::SelectItem( const TOOL_EVENT& aEvent )
|
|||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int SELECTION_TOOL::UnselectItem( const TOOL_EVENT& aEvent )
|
||||
{
|
||||
// Check if there is an item to be selected
|
||||
|
|
|
@ -171,8 +171,8 @@ public:
|
|||
///> Clear current selection event handler.
|
||||
int ClearSelection( const TOOL_EVENT& aEvent );
|
||||
|
||||
///> Makes sure a group selection does not contain items that would cause
|
||||
///> conflicts when moving/rotating together (e.g. a footprint and one of the same footprint's pads)
|
||||
///> Makes sure a group selection does not contain items that would cause
|
||||
///> conflicts when moving/rotating together (e.g. a footprint and one of the same footprint's pads)
|
||||
bool SanitizeSelection();
|
||||
|
||||
///> Item selection event handler.
|
||||
|
|
Loading…
Reference in New Issue