Temporarily work around buggy zone refresh behavior
The actual problem is that EVENTS::SelectedItemsModified (via EDA_DRAW_FRAME::UpdateMsgPanel) is being called on every OnModify call, where it really should only be called if the *selected* items are modified. This problem will take longer to fix. Fixes https://gitlab.com/kicad/code/kicad/-/issues/13279
This commit is contained in:
parent
68bc18425b
commit
f214f6f44c
|
@ -93,7 +93,7 @@ void PCB_PROPERTIES_PANEL::AfterCommit()
|
|||
|
||||
PROPERTY_BASE* property = m_propMgr.GetProperty( TYPE_HASH( *firstItem ),
|
||||
pgProp->GetName() );
|
||||
wxASSERT( property );
|
||||
wxCHECK2( property, continue );
|
||||
|
||||
bool writeable = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue