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:
parent
911e013850
commit
d8a4f9821e
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue