diff --git a/common/widgets/properties_panel.cpp b/common/widgets/properties_panel.cpp index d4bb227d7f..3d7b0b8146 100644 --- a/common/widgets/properties_panel.cpp +++ b/common/widgets/properties_panel.cpp @@ -239,7 +239,9 @@ void PROPERTIES_PANEL::update( const SELECTION& aSelection ) for( const wxString& groupName : groupDisplayOrder ) { - wxASSERT( pgPropGroups.count( groupName ) ); + if( !pgPropGroups.count( groupName ) ) + continue; + std::vector& properties = pgPropGroups[groupName]; auto groupItem = new wxPropertyCategory( groupName == wxEmptyString ?