Pcbnew, PADSTACK::operator=() fix missing copy of m_parent member

This commit is contained in:
jean-pierre charras
2024-11-04 17:16:43 +01:00
parent 6951dd39c0
commit 0443bd44d4
+1
View File
@@ -62,6 +62,7 @@ PADSTACK::PADSTACK( const PADSTACK& aOther )
PADSTACK& PADSTACK::operator=( const PADSTACK &aOther )
{
m_parent = aOther.m_parent;
m_mode = aOther.m_mode;
m_layerSet = aOther.m_layerSet;
m_customName = aOther.m_customName;