Revert "Allow commas in group bus signal lists"

This reverts commit cc290715a2.

(pushed accidentally; then decided behavior should be different)
This commit is contained in:
Jon Evans 2019-05-20 19:28:32 -04:00
parent bc52f0a03b
commit 1401d8a8ea
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ bool SCH_CONNECTION::ParseBusGroup( wxString aGroup, wxString* aName,
*aName = wxString( matches[1] );
wxStringTokenizer tokenizer( wxString( matches[2] ), wxT( ", \t" ) );
wxStringTokenizer tokenizer( wxString( matches[2] ), " " );
while( tokenizer.HasMoreTokens() )
{
aMemberList.push_back( tokenizer.GetNextToken() );