Allow spaces in SheetPins (for bus definitions).
Fixes https://gitlab.com/kicad/code/kicad/issues/6379
This commit is contained in:
parent
1ce1e493d6
commit
b21e07d759
|
@ -55,7 +55,7 @@ DIALOG_SHEET_PIN_PROPERTIES::DIALOG_SHEET_PIN_PROPERTIES( SCH_EDIT_FRAME* parent
|
|||
m_sdbSizerOK->SetDefault();
|
||||
|
||||
// Set invalid label characters list:
|
||||
SCH_NETNAME_VALIDATOR validator;
|
||||
SCH_NETNAME_VALIDATOR validator( true );
|
||||
m_comboName->SetValidator( validator );
|
||||
|
||||
// Now all widgets have the size fixed, call FinishDialogSettings
|
||||
|
|
Loading…
Reference in New Issue