Do not move footprint fields twice when performing Move Exactly
Fixes https://gitlab.com/kicad/code/kicad/issues/8062
This commit is contained in:
parent
1931677316
commit
7655533412
|
@ -1931,7 +1931,8 @@ int EDIT_TOOL::MoveExact( const TOOL_EVENT& aEvent )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
item->Move( translation );
|
if( !item->GetParent() || !item->GetParent()->IsSelected() )
|
||||||
|
item->Move( translation );
|
||||||
|
|
||||||
switch( rotationAnchor )
|
switch( rotationAnchor )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue