Smarten regex to accept ':' in signal names.

(In fact, just accept anything up to the closing paren.)

Fixes https://gitlab.com/kicad/code/kicad/issues/13942
This commit is contained in:
Jeff Young 2023-02-16 12:19:21 +00:00
parent 911e013850
commit d8a4f9821e
1 changed files with 1 additions and 1 deletions

View File

@ -1130,7 +1130,7 @@ void SIM_PLOT_FRAME::updateMeasurement( int aRow )
" *"
"([a-zA-Z]+)"
" +"
"([a-zA-Z])\\([a-zA-Z0-9_]+\\)" ) );
"([a-zA-Z])\\([^\\)]+\\)" ) );
m_workbookModified = true;