Commit a9ccf495 authored by Dick Hollenbeck's avatar Dick Hollenbeck

allow . in layer names

parent 2f41c401
...@@ -626,7 +626,7 @@ bool DIALOG_LAYERS_SETUP::testLayerNames() ...@@ -626,7 +626,7 @@ bool DIALOG_LAYERS_SETUP::testLayerNames()
// 4) cannot be 'signal' // 4) cannot be 'signal'
// 5) must be unique. // 5) must be unique.
// 6) cannot have illegal chars in filenames ( some filenames are built from layer names ) // 6) cannot have illegal chars in filenames ( some filenames are built from layer names )
static const wxString badchars( wxT("%$\" /\\.") ); static const wxString badchars( wxT("%$\" /\\") );
if( name == wxEmptyString ) if( name == wxEmptyString )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment