7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-02 00:26:45 +00:00
Wayne Stambaugh 2025-03-17 13:30:41 -04:00
parent 5783623c50
commit dd806aa902

View File

@ -40,7 +40,8 @@ EDA_ITEM::EDA_ITEM( EDA_ITEM* parent, KICAD_T idType, bool isSCH_ITEM, bool isBO
m_structType( idType ),
m_flags( 0 ),
m_parent( parent ),
m_forceVisible( false )
m_forceVisible( false ),
m_isRollover( false )
{ }
@ -49,7 +50,8 @@ EDA_ITEM::EDA_ITEM( KICAD_T idType, bool isSCH_ITEM, bool isBOARD_ITEM ) :
m_structType( idType ),
m_flags( 0 ),
m_parent( nullptr ),
m_forceVisible( false )
m_forceVisible( false ),
m_isRollover( false )
{ }