Browse Source

Don't accept random values; use the popup to change to a known alternate

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16021
newinvert
Jeff Young 2 years ago
parent
commit
f7d899a0fb
  1. 6
      eeschema/dialogs/dialog_symbol_properties.cpp

6
eeschema/dialogs/dialog_symbol_properties.cpp

@ -162,6 +162,12 @@ public:
return false; // don't allow adjacent cell overflow, even if we are actually empty
}
bool CanSetValueAs( int aRow, int aCol, const wxString& aTypeName ) override
{
// Don't accept random values; must use the popup to change to a known alternate
return false;
}
wxString GetValue( int aRow, int aCol ) override
{
return GetValue( at( aRow ), aCol );

Loading…
Cancel
Save